小程序制作平台网站设计平台 互联网品牌制作专家
关于A5客户收购GoogleAdsense带有搜索账户的相关事宜更多

软文发布平台资讯中心

vue组件基础知识总结

vue组件基础知识总结

  小红书种草一手资源覆盖200+行业

这篇文章主要介绍了vue 组件基础知识的相关资料,帮助大家更好的理解和使用vue的组件,感兴趣的朋友可以了解下

组件基础

1 组件的复用

组件是可复用的Vue实例。

<!DOCTYPE html><html><head> <meta charset="utf-8"> <style> </style> <script src="https://cdn.staticfile.org/vue/2.4.2/vue.min.js"></script></head><body><div id="app"><button-counter></button-counter><button-counter></button-counter><button-counter></button-counter></div> <script>// 定义一个名为 button-counter 的新组件Vue.component('button-counter', {data: function () {return {count: 0}},template: '<button v-on:click="count++">点击了 {{ count }} 次.</button>'});

new Vue({ el: '#app' }); </script></body></html>

注意当点击按钮时,每个组件都会各自独立维护它的count。这里自定义组件的data属性必须是一个函数,每个实例维护一份被返回对象的独立的拷贝。

<!DOCTYPE html><html><head> <meta charset="utf-8"> <style> </style> <script src="https://cdn.staticfile.org/vue/2.4.2/vue.min.js"></script></head><body><div id="app"><button-counter></button-counter><button-counter></button-counter><button-counter></button-counter></div> <script>var buttonCounterData = {count: 0}// 定义一个名为 button-counter 的新组件Vue.component('button-counter', {data: function () {return buttonCounterData},template: '<button v-on:click="count++">点击了 {{ count }} 次.</button>'});

new Vue({ el: '#app' }); </script></body></html>

2 通过 Prop 向子组件传递数据

<!DOCTYPE html><html><head> <meta charset="utf-8"> <style> </style> <script src="https://cdn.staticfile.org/vue/2.4.2/vue.min.js"></script></head><body><div id="app"><blog-post title="My journey with Vue"></blog-post><blog-post title="Blogging with Vue"></blog-post><blog-post title="Why Vue is so fun"></blog-post></div> <script>Vue.component('blog-post', {props: ['title'],template: '<h3>{{ title }}</h3>'})

new Vue({ el: '#app' }); </script></body></html>

这里组件就是通过自定义属性title来传递数据。

我们可以使用v-bind来动态传递prop。

<!DOCTYPE html><html><head> <meta charset="utf-8"> <style> </style> <script src="https://cdn.staticfile.org/vue/2.4.2/vue.min.js"></script></head><body><div id="app"><blog-post v-for="post in posts" v-bind:key="post.id" v-bind:title="post.title"></blog-post></div> <script>Vue.component('blog-post', {props: ['title'],template: '<h3>{{ title }}</h3>'})

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' }]}}); </script></body></html>

3 单个根元素

每个组件必须只有一个根元素。

<!DOCTYPE html><html><head> <meta charset="utf-8"> <style> </style> <script src="https://cdn.staticfile.org/vue/2.4.2/vue.min.js"></script></head><body><div id="app"><blog-post v-for="post in posts" v-bind:key="post.id" v-bind:post="post"></blog-post></div> <script>Vue.component('blog-post', {props: ['post'],template: `<div class="blog-post"><h3>{{ post.title }}</h3><div v-html="post.content"></div></div>`})

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...' }]}}); </script></body></html>

注意到v-bind:post="post"绑定的post是一个对象,这样可以避免了需要通过很多prop传递数据的麻烦。

4 监听子组件事件

<!DOCTYPE html><html><head> <meta charset="utf-8"> <style> </style> <script src="https://cdn.staticfile.org/vue/2.4.2/vue.min.js"></script></head><body><div id="app"><div :style="{fontSize: postFontSize + 'em'}"><blog-post v-for="post in posts" v-bind:key="post.id" v-bind:post="post"v-on:enlarge-text="postFontSize += 0.1" /></div></div> <script>Vue.component('blog-post', {props: ['post'],template: `<div class="blog-post"><h3>{{ post.title }}</h3><button v-on:click="$emit('enlarge-text')">放大字体</button><div v-html="post.content"></div></div>`})

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...' }]}}); </script></body></html>

子组件通过$emit方法并传入事件名称来触发一个事件。父组件可以接收该事件。

我们可以使用事件抛出一个值。

<!DOCTYPE html><html><head> <meta charset="utf-8"> <style> </style> <script src="https://cdn.staticfile.org/vue/2.4.2/vue.min.js"></script></head><body><div id="app"><div :style="{fontSize: postFontSize + 'em'}"><blog-post v-for="post in posts" v-bind:key="post.id" v-bind:post="post"v-on:enlarge-text="postFontSize += $event" /></div></div> <script>Vue.component('blog-post', {props: ['post'],template: `<div class="blog-post"><h3>{{ post.title }}</h3><button v-on:click="$emit('enlarge-text', 0.2)">放大字体</button><div v-html="post.content"></div></div>`})

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...' }]}}); </script></body></html>

在父组件中,我们可以通过$event访问到被抛出的这个值。

我们可以在组件上使用v-model。

<!DOCTYPE html><html><head> <meta charset="utf-8"> <style> </style> <script src="https://cdn.staticfile.org/vue/2.4.2/vue.min.js"></script></head><body><div id="app"><!-- <input v-model="searchText"> --><input v-bind:value="searchText" v-on:input="searchText = $event.target.value"><p>{{ searchText }}</p></div> <script>new Vue({el: '#app',data: {searchText: ''}}); </script></body></html><!DOCTYPE html><html><head> <meta charset="utf-8"> <style> </style> <script src="https://cdn.staticfile.org/vue/2.4.2/vue.min.js"></script></head><body><div id="app"><custom-input v-model="searchText"></custom-input><custom-input v-bind:value="searchText" v-on:input="searchText = $event"></custom-input><p>{{ searchText }}</p></div> <script>Vue.component('custom-input', {props: ['value'],template: `<input v-bind:value="value" v-on:input="$emit('input', $event.target.value)" >`})

new Vue({el: '#app',data: {searchText: ''}}); </script></body></html>

最后,注意解析 DOM 模板时的注意事项。

以上就是vue 组件基础知识总结的详细内容,更多关于vue 组件的资料请关注脚本之家其它相关文章!

来源:脚本之家

链接:https://www.jb51.net/article/204818.htm

尊敬的看官您对vue组件基础知识总结有什么看法呢?互联网品牌制作专家愿与您共同探讨!版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请加微信号oem365 举报,一经查实,本站将立刻删除。

上一篇: 如何在Vue表单中处理图片   返 回   下一篇:vue3watch和watchEffect的使用以及有哪些区别

相关资讯

小程序应用场景 | 小程序解决方案 | 小程序案例 | 小程序应功能 | 软文发布资源 | 网站设计

酒店预约解决方案
酒店预约小程序走红网络,也是传统转型的重要变化
详情
投票解决方案
强大功能,傻瓜式管理,有效防止作弊刷票
详情
新零售解决方案
小程序是现在新零售的新方式,深度结合线上线下
详情
预约服务解决方案
预约到店小程序通过用户在线预约到店等
详情
企业官网解决方案
企业展示小程序主要展示企业信息、产品案例等
详情
教育培训解决方案
主要展示教育机构的课程、可在线预约与购买课程
详情
推广解决方案
可以让企业通过推广模式全面展示自己的产品
详情
到店解决方案
到店服务解决方案,主要是面向实体餐饮门店
详情

我们的服务是否能满足您的需求?

如果不能,请联系我们或给我们留言,我们收到后会第一时间联系您!感谢您对我们的关注!

粤公网安备 44200002005005号