vue基础 ref的作用

Posted moon-yyl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue基础 ref的作用相关的知识,希望对你有一定的参考价值。

1.  ref 获取dom元素,除了能获取dom元素也能获取组件dom,

  组件通信:
       在父组件中直接调用ref定义的组件的数据或者方法
  
<div id="app">
        <p ref="mybutton"></p>
        <div ref="mybutton"></div> <!-- 会覆盖 -->
        <!--遇见循环 输出是一个数组-->
        <template v-for="i in 3">
            <div ref="mybutton">ww</div> 
        </template>
        <my-button ref="myComponent"></my-button>
    </div>
    <script src="./node_modules/vue/dist/vue.js"></script>
    <script>
        let vm = new Vue({
            el:"#app",
            mounted(){
                console.log(this.$refs.mybutton);
                console.log(this.$refs.myComponent);
                console.log(this.$refs.myComponent.msg); //获取组件的数据
                this.$refs.myComponent.fn(); //获取组件的元素和方法
            },
            components:{
                "my-button":{
                    template:"<div>myYilia</div>",
                    data(){
                        return {
                            msg:"1212"
                        }
                    },
                    methods:{
                        fn(){
                            console.log("121");
                        }
                    }
                }
            }

    });
</script>

 

以上是关于vue基础 ref的作用的主要内容,如果未能解决你的问题,请参考以下文章

VUE基础回顾6

vue中ref的作用

Vue3官网-高级指南(十七)响应式计算`computed`和侦听`watchEffect`(onTrackonTriggeronInvalidate副作用的刷新时机`watch` pre)(代码片段

vue3ref获取元素

ref 引用 丨Vue 基础操作

vue中$refs的用法及作用详解