Vue父组件给子组件传动态值,子组件实时更新

父组件



子组件
template


script

data () {
    return {
      ViewData: {}
    }
  },
props: ['type', 'data'],
watch: {
    data () {
      this.ViewData = this.data
    },
    deep: true
  }

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