赞
踩
- <template>
- <el-form ref="formRef"></el-form>
- <child-component />
- </template>
- <script setup lang="ts">
- import ChildComponent from './child.vue'
- import { getCurrentInstance } from 'vue'
- import { ElForm } from 'element-plus'
-
- // 方法一,这个变量名和 DOM 上的 ref 属性必须同名,会自动形成绑定
- const formRef = ref(null)
- console.log(formRef.value) // 这就获取到 DOM 了
-
- // 方法二
- const { proxy } = getCurrentInstance()
- proxy.$refs.formRef.validate((valid) => { ... })
-
- // 方法三,比如在 ts 里,可以直接获取到组件类型
- // 可以这样获取子组件
- const formRef = ref<InstanceType<typeof ChildComponent>>()
-
- // 也可以这样 获取 element ui 的组件类型
- const formRef = ref<InstanceType<typeof ElForm>>()
- formRef.value?.validate((valid) => { ... })
- </script>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。