组件中的props类型及其默认值

6种props类型:字符串、数字、布尔值、数组、对象、函数

  props: {
    StringValue: {
      type: String,
      default: ''
    },
    NumberValue: {
      type: Number,
      default: 0
    },
    BooleanValue: {
      type: Boolean,
      default: true
    },
    ArrayValue: {
      type: Array,
      default: () => []
    },
    ObjectValue: {
      type: Object,
      default: () => ({})
    },
    FunctionValue: {
      type: Function,
      default: function () { }
    }
  }

对象原始形式

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

你可能感兴趣的:(vue学习笔记,javascript,vue)