vue3 ts withDefaults object对象默认值
vue
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
项目地址:https://gitcode.com/gh_mirrors/vu/vue
·
withDefaults Obj使用方法
比如 我封装了个types,如下
export type TreeOptionProps {
children?: string;
label?: string;
value?: string;
disabled?: string;
}
export type typeSeachTreeProps = {
data?: any[];
props?: TreeOptionProps;
height?: number;
};
export type typeSeachTreeV2 = typeSeachTreeProps & {
isFilter?: boolean;
xxxx:xxxxx .....
};
A组件
const config = reactive<TreeOptionProps>({
children: "children",
label: "DeviceName",
value: "PointAddressID"
});
传递给b组件
<B :props="config" :data="data" />
传递给B组件
B组件
b组件接收
const props = withDefaults(defineProps<typeSeachTreeV2>(), {
isFilter: true,
});
传递给C组件
<C :data="data" :props="props.props" />
C组件
C组件接收
const props = withDefaults(defineProps<typeSeachTreeProps>(), {
data: () => [],
props: () => ({
value: "id",
label: "label",
children: "children",
disabled: "disabled"
})
});
如果C组件在设置不添加默认值类型 props: (): TreeOptionProps =>({xxxx});
B组件 <C :data=“data” :props=“props.props” / > 这里的props会提示
不能将类型“TreeOptionProps”分配给类型“{ value: string; label: string; children: string; disabled: string; }”。
C组件接收(正确写法)
const props = withDefaults(defineProps<typeSeachTreeProps>(), {
data: () => [],
props: (): TreeOptionProps => ({
value: "id",
label: "label",
children: "children",
disabled: "disabled"
})
});
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
最近提交(Master分支:4 个月前 )
9e887079
[skip ci] 1 年前
73486cb5
* chore: fix link broken
Signed-off-by: snoppy <michaleli@foxmail.com>
* Update packages/template-compiler/README.md [skip ci]
---------
Signed-off-by: snoppy <michaleli@foxmail.com>
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> 1 年前
AtomGit 是由开放原子开源基金会联合 CSDN 等生态伙伴共同推出的新一代开源与人工智能协作平台。平台坚持“开放、中立、公益”的理念,把代码托管、模型共享、数据集托管、智能体开发体验和算力服务整合在一起,为开发者提供从开发、训练到部署的一站式体验。
更多推荐


所有评论(0)