只贴上精简代码
父组件使用v-model
绑定子组件,会默认传递一个modelValue
变量和update:modelValue
方法到子组件
<customDialog
v-model="customDialogVisible "
></customDialog>
<el-dialog
v-model="dialogVisible "
...
>
...
在defineEmits
和defineEmits
定义modelValue
变量和update:modelValue
方法
vue语法中不应直接修改props
(一些旧版本中直接修改是可以正常运行的,但新版本严格限制,直接报错),所以子组件中v-model
不应绑定modelValue
,所以用computed
生成一个变量用于v-model
绑定
<script lang="ts" setup>
import { ElMessage, ElMessageBox, ElNotification } from "element-plus";
const props = defineEmits<{
modelValue: boolean;
}>();
const emits = defineEmits<{
(e: "update:modelValue", t: boolean): void;
}>();
const dialogVisible = computed({
get: () => props.modelValue,
set: (newValue) => {
emits("update:modelValue", newValue);
},
});
...