美文网首页
Vue2 props Object类型 默认值写法

Vue2 props Object类型 默认值写法

作者: IamaStupid | 来源:发表于2019-10-23 17:18 被阅读0次

    写法:

    props: {
    
    dialogStyleVisible: {
            type: Boolean,
            default: false
    },
    colorForm: {
          type: Object,
            default:function () {
                return {}
            }
    },
    
    abc: [String, Object]
    
    }
    

    相关文章

      网友评论

          本文标题:Vue2 props Object类型 默认值写法

          本文链接:https://www.haomeiwen.com/subject/swrwyctx.html