props: {
    demoString: {
      type: String,
      default: ''
    },
    demoNumber: {
      type: Number,
      default: 0
    },
    demoBoolean: {
      type: Boolean,
      default: true
    },
    demoArray: {
      type: Array,
      default: () => []
    },
    demoObject: {
      type: Object,
      default: () => ({})
    },
    demoFunction: {
      type: Function,
      default: function () { }
    }
  }

其中,默认值为对象时
不能写成

    demoObject: {
      type: Object,
      default: () => { }
    }

不加’()'的话返回的是一个空函数体,没有返回值。
默认写法

    demoObject: {
      type: Object,
      default: function () {
        return {}
      }
    }
Logo

基于 Vue 的企业级 UI 组件库和中后台系统解决方案,为数万开发者服务。

更多推荐