constemit =defineEmits(["update:modelValue"]);constprops = defineProps<{modelValue:string|undefined}>();constimageUrl =ref(props.modelValue); 问题:我在加载数据的时候,是异步加载,这里出现了,子组件里面,获取不到form的值。 注:感觉是我的 server 去异步请求接口,然后form没有更新到。因为我在编辑...
子组件: vue: <template> <el-select v-model="from" @change="change"> <el-option v-for="item in column" :key="item.id" :label="item.title" :value="item.id" /> </el-select> </template> ts: import type { ColumnModel } from "@/model/column/ColumnModel"; import { ColumnServer ...