美文网首页前端
vue直接在父组件中调用子组件的方法

vue直接在父组件中调用子组件的方法

作者: SY | 来源:发表于2021-07-05 09:17 被阅读0次

方法一:

//父组件中   

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

<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('我是子组件方法');

            });

        });

    },

};

相关文章

网友评论

    本文标题:vue直接在父组件中调用子组件的方法

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