国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁技術文章
文章詳情頁

vue 組件基礎知識總結

瀏覽:4日期:2022-10-08 14:17:29
組件基礎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></blog-post><blog-post></blog-post><blog-post></blog-post></div> <script>Vue.component(’blog-post’, {props: [’title’],template: ’<h3>{{ title }}</h3>’})new Vue({ el: ’#app’ }); </script> </body></html>

這里<blog-post>組件就是通過自定義屬性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 組件的資料請關注好吧啦網其它相關文章!

標簽: Vue
相關文章:
主站蜘蛛池模板: 日韩欧美一区二区久久 | 日本加勒比系列 | 女人张开双腿让男人 | 亚洲美女在线播放 | 美女被靠视频免费网站不需要会员 | 欧美片欧美日韩国产综合片 | 日韩精品中文字幕一区二区三区 | 日鲁夜鲁鲁狠狠综合视频 | 女人一级特纯黄大片色 | 99热久久国产综合精品久久国产 | 欧美成人毛片在线视频 | 全部在线播放免费毛片 | 午夜精品尤物福利视频在线 | 综合网站 | 一级美国乱色毛片 | 亚洲精品99久久久久中文字幕 | 日本欧美一区二区三区在线 | 亚洲精品自拍视频 | 99视频在线观看免费视频 | 中国成人在线视频 | 精品香蕉99久久久久网站 | 欧美日韩一级二级三级 | 欧美 自拍 丝袜 亚洲 | 99国产精品欧美久久久久久影院 | 亚洲伦乱 | 日韩欧美一区二区三区免费观看 | 免费一级毛片免费播放 | gdcm01果冻传媒 | 韩国美女毛片 | 激情欧美日韩一区二区 | 国产精品三级 | 国产激爽大片在线播放 | 男人都懂的网址在线看片 | 欧美国产视频 | 欧美一二三区在线 | 新版天堂中文资源8在线 | 久久不雅视频 | 美女张开大腿让男人捅 | 成人在线网址 | 亚洲精品美女在线观看 | 国产亚洲精品成人婷婷久久小说 |