这篇文章主要介绍了vue 组件基础知识的相关资料,帮助大家更好的理解和使用vue的组件,感兴趣的朋友可以了解下
组件基础
1 组件的复用
组件是可复用的Vue实例。
// 定义一个名为 button-counter 的新组件
Vue.component(‘button-counter’, {
data: function () {
return {
count: 0
}
},
template: ‘‘
});
new Vue({ el: ‘#app’ });
注意当点击按钮时,每个组件都会各自独立维护它的count。这里自定义组件的data属性必须是一个函数,每个实例维护一份被返回对象的独立的拷贝。
var buttonCounterData = {
count: 0
}
// 定义一个名为 button-counter 的新组件
Vue.component(‘button-counter’, {
data: function () {
return buttonCounterData
},
template: ‘‘
});
new Vue({ el: ‘#app’ });
2 通过 Prop 向子组件传递数据
Vue.component(‘blog-post’, {
props: [‘title’],
template: ‘
{{ title }}
‘
})
new Vue({ el: ‘#app’ });
这里组件就是通过自定义属性title来传递数据。
我们可以使用v-bind来动态传递prop。
Vue.component(‘blog-post’, {
props: [‘title’],
template: ‘
{{ title }}
‘
})
new Vue({
el: ‘#app’,
data: {
posts: [
{ id: 1, title: ‘My journey with Vue’ },
{ id: 2, title: ‘Blogging with Vue’ },
{ id: 3, title: ‘Why Vue is so fun’ }
]
}
});
3 单个根元素
每个组件必须只有一个根元素。
Vue.component(‘blog-post’, {
props: [‘post’],
template: `
{{ post.title }}
`
})
new Vue({
el: ‘#app’,
data: {
posts: [
{ id: 1, title: ‘My journey with Vue’, content: ‘my journey…’ },
{ id: 2, title: ‘Blogging with Vue’, content: ‘my blog…’ },
{ id: 3, title: ‘Why Vue is so fun’, content: ‘Vue is so fun…’ }
]
}
});
注意到v-bind:post=”post”绑定的post是一个对象,这样可以避免了需要通过很多prop传递数据的麻烦。
4 监听子组件事件
v-bind:key=”post.id”
v-bind:post=”post”
v-on:enlarge-text=”postFontSize += 0.1″ />
Vue.component(‘blog-post’, {
props: [‘post’],
template: `
{{ post.title }}
`
})
new Vue({
el: ‘#app’,
data: {
postFontSize: 1,
posts: [
{ id: 1, title: ‘My journey with Vue’, content: ‘my journey…’ },
{ id: 2, title: ‘Blogging with Vue’, content: ‘my blog…’ },
{ id: 3, title: ‘Why Vue is so fun’, content: ‘Vue is so fun…’ }
]
}
});
子组件通过$emit方法并传入事件名称来触发一个事件。父组件可以接收该事件。
我们可以使用事件抛出一个值。
v-bind:key=”post.id”
v-bind:post=”post”
v-on:enlarge-text=”postFontSize += $event” />
Vue.component(‘blog-post’, {
props: [‘post’],
template: `
{{ post.title }}
`
})
new Vue({
el: ‘#app’,
data: {
postFontSize: 1,
posts: [
{ id: 1, title: ‘My journey with Vue’, content: ‘my journey…’ },
{ id: 2, title: ‘Blogging with Vue’, content: ‘my blog…’ },
{ id: 3, title: ‘Why Vue is so fun’, content: ‘Vue is so fun…’ }
]
}
});
在父组件中,我们可以通过$event访问到被抛出的这个值。
我们可以在组件上使用v-model。
{{ searchText }}
new Vue({
el: ‘#app’,
data: {
searchText: ”
}
});
{{ searchText }}
Vue.component(‘custom-input’, {
props: [‘value’],
template: “
})
new Vue({
el: ‘#app’,
data: {
searchText: ”
}
});
最后,注意解析 DOM 模板时的注意事项。
以上就是vue 组件基础知识总结的详细内容,更多关于vue 组件的资料请关注脚本之家其它相关文章!
来源:脚本之家
链接:https://www.jb51.net/article/204818.htm
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:SEO优化专员,转转请注明出处:https://www.chuangxiangniao.com/p/893014.html