Vue中组件之间传值 props类型及默认值


Vue中组件之间传值 props类型及默认值

写法:

 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 () { }
    }
  }

注意:默认值为对象时 需要写成:default: () => ({}) 不加'()'的话返回的是一个空函数体,没有返回值

参考:https://blog.csdn.net/weixin_39457424/article/details/105289303


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM