vue中父组件如何动态修改子组件的值?

vue中父组件如何动态修改子组件的值?,第1张

1.使用ref修改

$refs:

在Vue中,父组件可以通过 $refs来管理通过ref注册过的所有子组件,即 $refs对象下可以包含很多 $ref对象.

创建两个组件分别是父组件:aaa.vue 子组件:bbb.vue

父组件 *** 作(aaa.vue)

在子组件上添加ref=“child”命名。

给按钮添加一个方法

方法内使用 this.$refs.child.dlshow=true直接修改子组件的data数据中的dlshow内容。

方法内使用this.$refs.child.dlff(1)给子组件的dlff方法传递参数1

/*父组件*/

登录一下吧

子组件 *** 作(bbb.vue)

2.使用props传递父传子

props是通过父组件值扔给给子组件,子组件使用props来接住值!

父组件 *** 作(aaa.vue)

给子组件使用v-bind传过来的键名和它的值:shuju=“dlshow”

在data中定义对应的dlshow

/*父组件*/

登录一下吧

子组件 *** 作(bbb.vue)

使用props接收父组件扔过来的key键和参数类型。

原文链接:https://blog.csdn.net/m0_57146100/article/details/119617880

最近在做类似的事情,在okoala/vue-antd上学到一个做法。

首先,父组件传入一个`render`函数,用于描述要动态生成的子组件。相关代码如下:

const columns = [{

title: ' *** 作',

key: 'operation',

render: (text, record, index) =>`<s-button icon="search" @click="view(${index})"></s-button>`

}]

然后,对应的`table`组件中,对相应的`render`使用`$compile`进行渲染,并插入到相应的位置。这里需要注意的是编译作用域,需要使用父组件来编译,否则无法绑定父组件的事件。相关代码如下:

if (render) {

const $td = $tr.children[j]

const value = this.dataSource[i]

const template = render(value[dataIndex], value, i)

const $cell = document.createElement('div')

$cell.innerHTML = template

this.$parent.$compile($cell)

$td.appendChild($cell)

}

方法一:

//父组件中   

引入子组件  然后点击调用子组件方法

<template>

  <div class="container">

    <h1 @click="handleClick" style="text-align: center">Musxc</h1>

    <LineChart ref="child" ></LineChart>

  </div>

</template>

<script>

import LineChart from "../components/LineChart.vue"

export default {

  components: {

    LineChart,

  },

  methods: {

        handleClick() {

              this.$refs.child.sing()

        },

  },

}

</script>

//子组件中 

我是子组件

export default {

  methods: {

    sing() {

      console.log('我是子组件的方法')

    },

  },

}

成功的调用了子组件的方法

方法二:通过组件的$emit、$on方法;

//父组件中   

        点击调用子组件方法           

    import Child from './child'

export default{    methods: {        handleClick() {              this.$refs.child.$emit("childmethod")    //子组件$on中的名字        },

    },

}//子组件中   

我是子组件

export default {

    mounted() {

        this.$nextTick(function() {

            this.$on('childmethods',function() {

                console.log('我是子组件方法')

            })

        })

    },

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11599769.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存