Vue 教程(二十二)$children$ref 属性
Posted _否极泰来_
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue 教程(二十二)$children$ref 属性相关的知识,希望对你有一定的参考价值。
Vue 教程(二十二) c h i l d r e n 、 children、 children、ref 属性
要点
- 模板属性 ref 可以根据名称获取元素
代码实现
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<title>Document</title>
</head>
<body>
<div id="app">
<child-component></child-component>
<child-component ref="ref_id"></child-component>
<button v-on:click="childrenClick">$children属性</button>
<button @click="refClick">$ref属性</button>
</div>
<template id="bookCategory">
<div>
<h4>计算机系列丛书</h4>
</div>
</template>
<script>
const childComponent = {
template: "#bookCategory",
data() {
return {
desc: "计算机|网络|人工智能"
}
},
}
const app = new Vue({
el: "#app",
components: {
childComponent
},
methods: {
childrenClick() {
console.info("childre:", this.$children[0].desc);
},
refClick() {
console.info("ref:", this.$refs.ref_id.desc);
}
}
})
</script>
</body>
</html>
– 以上为《Vue 教程(二十二) c h i l d r e n 、 children、 children、ref 属性》,如有不当之处请指出,我后续逐步完善更正,大家共同提高。谢谢大家对我的关注。
——厚积薄发(yuanxw)
以上是关于Vue 教程(二十二)$children$ref 属性的主要内容,如果未能解决你的问题,请参考以下文章
vue组件 $children,$refs,$parent的使用详解