Vue $refs操作 DOM实现组件传值
怎么使用ref在使用框架的过程中有些时候我们不得不去操作dom节点,那么怎么操作呢?document…直接获取么?这样不好!vue不推荐我们操作dom,那么怎么获取元素呢?ref属性,则起到了它的作用–我们首先来引用官网的关于ref属性的介绍什么意思、通俗的讲就是给html标签添加一个ref属性指向一个名称,然后在vue实例当中使用 this.$refs去调用(this.$refs是一...
怎么使用ref
在使用框架的过程中有些时候我们不得不去操作dom节点,那么怎么操作呢?document…直接获取么?
这样不好!vue不推荐我们操作dom,那么怎么获取元素呢?
ref属性,则起到了它的作用–
我们首先来引用官网的关于ref属性的介绍
什么意思、通俗的讲就是给html标签添加一个ref属性指向一个名称,然后在vue实例当中使用 this.$refs去调用(this.$refs是一个对象)
如果我们要去获取dom节点的话则直接采用
this.$refs.名称(lanyangyang)即可,此时获取的便是我们对应ref名称的那个节点
这样我们不就可以对dom元素进行响应的操作了么?
注意(如果想要在页面加载时便获取dom节点、请把this.$refs写在生命周期mounted内)
ref操作组件
仔细思考、ref是写在html标签上的属性、那么组件是不是一个html标签呢?我们可不可以把ref写在组件上呢?如果可以的话,那指向的会是什么呢?
答案是:当然可以~~~
这个时候既然获取的是组件实例,我们可不可以调用组件的data数据和methods数据呢?
当然是可以的
我们在后方输入要调用的数据或者方法 //如msg
对应控制台输出结果
ref案例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
.deng {
width: 100px;
height: 100px;
border: 1px solid black;
}
.yellow {
background-color: yellow;
}
.gray {
background-color: gray;
}
</style>
</head>
<body>
<div id="app" ref="app">
<but ref="but"></but>
<ba ref="ba"></ba>
</div>
<script src="../node_modules/vue/dist/vue.js"></script>
<script>
Vue.component("but", {
methods: {
kai() {
let father = app.$refs;
father.ba.color = "yellow";
},
guan() {
let father = app.$refs;
father.ba.color = "gray";
},
},
template: `<div><button @click='kai'>开</button><button @click='guan'>关</button></div>`,
});
Vue.component("ba", {
data() {
return {
color: "yellow",
};
},
template: `<div :class="['deng',color]"></div>`,
});
var app = new Vue({
el: "#app",
data: {},
methods: {},
});
</script>
</body>
</html>
实现功能
从而实现了,兄弟组件的方法传值与调用、
更多推荐
所有评论(0)