vue props type设置多个类型
时间:2022-09-12 10:14:19|栏目:vue|点击: 次
props type设置多个类型
props: { value: { // vue props type设置多个类型 type: Number | null, required: true }, articleId: { type: [Number, String, Object], required: true } },
如何定义props
props: { num: { type: [Number, String], //支持多种类型 default: 0, //默认值 }, arr: { type: Array, default: function () { return []; }, required: true, //是否必须 }, },
上一篇:Vue2响应式系统介绍
栏 目:vue
下一篇:Vue标尺插件使用详解
本文标题:vue props type设置多个类型
本文地址:http://www.codeinn.net/misctech/213434.html