如何正确更改父组件中的子组件v模型值?

时间:2019-04-16 03:37:17

标签: javascript vue.js

我正在学习Vue.js,并且想要更改子组件的v模型绑定值,然后在父组件中触发其事件。

我正在使用元素ui文档中的演示,想要使用树过滤器组件,但是有时我需要直接修改子输入值,但是我发现子组件事件出了点问题。
一切都很好,但是没有子组件事件发生,怎么了?

这是我的child.vue文件

<template>
<div>
<el-input
  placeholder="输入关键字进行过滤"
  v-model="filterText">
</el-input>

<el-tree
  class="filter-tree"
  :data="data2"
  :props="defaultProps"
  default-expand-all
  :filter-node-method="filterNode"
  ref="tree2">
</el-tree>
</div>
</template>
<script>
  export default {
    props: ['value']
    watch: {
      value(val) {
        this.filterText = val; // modify filterText value
      }
      filterText(val) {
        // this will call, but not call filterNode
        this.$refs.tree2.filter(val);
      }
    },

    methods: {
      filterNode(value, data) {
        if (!value) return true;
        return data.label.indexOf(value) !== -1;
      }
    },

    data() {
      return {
        filterText: '',
        data2: [{
          id: 1,
          label: '一级 1',
          children: [{
            id: 4,
            label: '二级 1-1',
            children: [{
              id: 9,
              label: '三级 1-1-1'
            }, {
              id: 10,
              label: '三级 1-1-2'
            }]
          }]
        }, {
          id: 2,
          label: '一级 2',
          children: [{
            id: 5,
            label: '二级 2-1'
          }, {
            id: 6,
            label: '二级 2-2'
          }]
        }, {
          id: 3,
          label: '一级 3',
          children: [{
            id: 7,
            label: '二级 3-1'
          }, {
            id: 8,
            label: '二级 3-2'
          }]
        }],
        defaultProps: {
          children: 'children',
          label: 'label'
        }
      };
    }
  };
</script>

这是Parent.vue文件

<child v-model="sinput></child>
...

this.sinput = "1"; // change 

1 个答案:

答案 0 :(得分:0)

我猜您正在将此“输入”绑定到选定的树节点值,那么您将需要在树组件上使用事件“节点单击”。

对于自定义组件上的v-model,在vue中需要'model'选项。

ref:Vue.js - Customizing Component v-model

这是一些代码,希望对您有所帮助:)

<template>
 <el-tree
   ...
   @node-click="handleNodeClick"
 />
</template>
export default {
  model: {
    prop: 'sinput',
    event: 'change'
  },
  props: {
    sinput: String
  },
  methods: {
    handleNodeClick(data) {
      if (!data.children) {
        // your code
        this.$emit('change', data.value);
      }
    }
  }
}