美文网首页
vue组件间通信props为数组和对象的default

vue组件间通信props为数组和对象的default

作者: krystal_H | 来源:发表于2019-12-20 11:43 被阅读0次

    vue组件间通信props为数组和对象时

    props: {
      acceptObj: {
        type: Object,
        default: () => ({}) // 注意不能去掉括号
        // default: function() { return {} } 
      },
      acceptArr: {
        type: Array,
        default: ()  => [] 
        // default: function() { return [] }
      }
    }
    

    额外加句 this.$refs[formName].resetFields()时,表单元素别忘了加prop

    相关文章

      网友评论

          本文标题:vue组件间通信props为数组和对象的default

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