Vue学习(十九)Prop全攻略

注意

props属性默认值使用default()或者default返回

props: {
        value: {
            type: String,
            default: '',
        },
        labelInValue: {
            type: Boolean,
            default() {
                return false;
            },
        },
        placeholder: {
            type: String,
            default() {
                return '选择游戏';
            },
        },
        width: {
            type: Number,
            default() {
                return 300;
            },
        }
    },

参考

vue教程:Prop

 

posted @ 2021-09-15 18:18  坤嬷嬷  阅读(160)  评论(0编辑  收藏  举报