Vue2.0进阶 - 01. ref属性

Vue2.0进阶学习

ref属性

  1. 被用来给元素或者子组件注册引用信息(id的替代)
  2. 应用在html标签上获取到的是真实的dom元素,应用在组件标签上获取到的是组件对象实例vc
  3. 使用方法 < h1 ref=“title”>… </h1> 或者 <Student ref=“stu”></Student>
  4. 获取 this.refs.title 真实dom对象 或者 this.refs.stu stu组件对象实例
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<template>
<div>
<!--
ref属性
1. 被用来给元素或者子组件注册引用信息(id的替代)
2. 应用在html标签上获取到的是真实的dom元素,应用在组件标签上获取到的是组件对象实例vc
3. 使用方法 <h1 ref="title">.....</h1> 或者 <Student ref="stu"></Student>
4. 获取 this.$refs.title 真实dom对象 或者 this.$refs.stu stu组件对象实例
-->
<h2 ref="title">app组件</h2>
<Student ref="stu"></Student>
<button @click="getDomClick">使用ref获取dom元素</button>
</div>
</template>

<script>
import Student from './components/Student.vue';
export default {
name: 'App',
components: {
Student
},
methods: {
getDomClick() {
console.log('function getDomClick');
console.log(this.$refs.title); //获取到真实的dom元素
console.log(this.$refs.stu); // student组件对象 vc

}
},
}
</script>

<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>

Vue2.0 基础学习目录

完整代码可以在 GitHub