色综合图-色综合图片-色综合图片二区150p-色综合图区-玖玖国产精品视频-玖玖香蕉视频

您的位置:首頁技術(shù)文章
文章詳情頁

vue 組件基礎(chǔ)知識(shí)總結(jié)

瀏覽:7日期:2022-10-08 14:17:29
組件基礎(chǔ)1 組件的復(fù)用

組件是可復(fù)用的Vue實(shí)例。

<!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>// 定義一個(gè)名為 button-counter 的新組件Vue.component(’button-counter’, {data: function () {return {count: 0}},template: ’<button v-on:click='count++'>點(diǎn)擊了 {{ count }} 次.</button>’});new Vue({ el: ’#app’ }); </script> </body></html>

注意當(dāng)點(diǎn)擊按鈕時(shí),每個(gè)組件都會(huì)各自獨(dú)立維護(hù)它的count。這里自定義組件的data屬性必須是一個(gè)函數(shù),每個(gè)實(shí)例維護(hù)一份被返回對(duì)象的獨(dú)立的拷貝。

<!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}// 定義一個(gè)名為 button-counter 的新組件Vue.component(’button-counter’, {data: function () {return buttonCounterData},template: ’<button v-on:click='count++'>點(diǎn)擊了 {{ count }} 次.</button>’});new Vue({ el: ’#app’ }); </script> </body></html>2 通過 Prop 向子組件傳遞數(shù)據(jù)

<!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來傳遞數(shù)據(jù)。我們可以使用v-bind來動(dòng)態(tài)傳遞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 單個(gè)根元素

每個(gè)組件必須只有一個(gè)根元素。

<!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是一個(gè)對(duì)象,這樣可以避免了需要通過很多prop傳遞數(shù)據(jù)的麻煩。

4 監(jiān)聽子組件事件

<!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方法并傳入事件名稱來觸發(fā)一個(gè)事件。父組件可以接收該事件。

我們可以使用事件拋出一個(gè)值。

<!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訪問到被拋出的這個(gè)值。我們可以在組件上使用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 模板時(shí)的注意事項(xiàng)。

以上就是vue 組件基礎(chǔ)知識(shí)總結(jié)的詳細(xì)內(nèi)容,更多關(guān)于vue 組件的資料請(qǐng)關(guān)注好吧啦網(wǎng)其它相關(guān)文章!

標(biāo)簽: Vue
相關(guān)文章:
主站蜘蛛池模板: 手机看片福利在线 | 精品在线播放 | 欧美一区三区 | 亚洲欧美精品中字久久99 | 波多野结衣一区二区三区高清在线 | 免费观看成人久久网免费观看 | 欧美日韩亚洲在线观看 | 国产自产v一区二区三区c | 久久免费精品国产72精品剧情 | 国产美女精品视频免费观看 | 欧美一区二区三区激情视频 | 免费看美女午夜大片 | 亚洲性久久久影院 | 久久成人综合网 | 亚洲国产欧美一区 | 日韩美女强理论片 | 国内精自品线一区91 | 亚洲资源在线观看 | 91高清免费国产自产 | 高清性色生活片欧美在线 | 一级黑人 | 久久亚洲国产伦理 | 男女精品视频 | 私人玩物福利 | 欧美成一级 | 国产91香蕉 | 亚洲深夜 | 9丨精品国产高清自在线看 ⅹxx中国xxx人妖 | 国产精品久久做爰 | 99久久精品免费观看区一 | 黄色视影 | 国产成人精品一区二区三在线观看 | 一区二区精品在线观看 | 一本久道在线 | 喷潮白浆直流在线播放 | 日韩福利视频精品专区 | 欧美亚洲日本视频 | 91成人午夜在线精品 | 一区二区三区久久 | 久热精品免费视频 | 国产亚洲精品久久 |