亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

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

Vue 組件注冊全解析

瀏覽:67日期:2022-10-18 18:15:55
全局組件注冊語法

components中的兩個參數(shù)組件名稱和組件內(nèi)容

Vue.component(組件名稱, { data: 組件數(shù)據(jù), template:組件模板內(nèi)容 })全局組件注冊應用

組件創(chuàng)建:

Vue.component(’button-counter’, { data: function(){ return { count: 0 } }, template: ’<button @click='handle'>點擊了{{count}}次</button>’, methods: { handle: function(){ this.count ++; } } }) var vm = new Vue({ el: ’#app’, data: { } });

如何在頁面中運用,直接在頁面中應用組件名稱

<div id='app'> <button-counter></button-counter></div>

這個組件是可以重用的,直接在頁面中多次使用,切數(shù)據(jù)相互獨立,互不干擾

組件注冊注意事項

1.data必須是一個函數(shù)

分析函數(shù)與普通對象的對比

2.組件模板內(nèi)容必須是單個根元素

分析演示實際的效果

3.組件模板內(nèi)容可以是模板字符串

模板字符串需要瀏覽器提供支持(ES6語法)

4.組件命名方式

短橫線方式

Vue.component(’my-component’,{/*...*/})

駝峰方式

Vue.component(’MyComponent’,{/*...*/})

如果使用駝峰式命名組件,那么在使用組件的時候,只能在字符串模板中用駝峰的方式使用組件,但是在普通的標簽模板中,必須使用短橫線的方式使用組件

局部組件

局部組件只能在注冊它的父組件中使用

局部組件注冊語法

var ComponentA = {/*...*/}var ComponentB = {/*...*/}var ComponentC = {/*...*/}new Vue({ el : ’#app’, components: {’component-a’ : ComponentA,’component-b’ : ComponentB,’component-c’ : ComponentC}})

組件的創(chuàng)建

Vue.component(’test-com’,{ template: ’<div>Test<hello-world></hello-world></div>’ }); var HelloWorld = { data: function(){ return { msg: ’HelloWorld’ } }, template: ’<div>{{msg}}</div>’ }; var HelloTom = { data: function(){ return { msg: ’HelloTom’ } }, template: ’<div>{{msg}}</div>’ }; var HelloJerry = { data: function(){ return { msg: ’HelloJerry’ } }, template: ’<div>{{msg}}</div>’ }; var vm = new Vue({ el: ’#app’, data: { }, components: { ’hello-world’: HelloWorld, ’hello-tom’: HelloTom, ’hello-jerry’: HelloJerry } });

頁面中的應用

<div id='app'> <hello-world></hello-world> <hello-tom></hello-tom> <hello-jerry></hello-jerry> <test-com></test-com> </div>

以上就是Vue 組件注冊全解析的詳細內(nèi)容,更多關于Vue 組件注冊的資料請關注好吧啦網(wǎng)其它相關文章!

標簽: Vue
相關文章:
主站蜘蛛池模板: 欧美黄色大片网站 | 中文字幕日韩精品中文区 | 久久久线视频 | 日本在线一区二区 | 在线观看 一区二区 麻豆 | 毛片视| 日韩亚洲精品不卡在线 | 毛片免费软件 | 91成人高清在线播放 | 亚洲综合网站 | 一级黄色大片视频 | 亚洲欧美色综合大色 | 中文字幕专区高清在线观看 | 亚洲视频色图 | 国产一区精品在线 | 国产91精品新入口 | 国产三级在线观看播放 | 日韩美女一级毛片a | 欧美高清免费一级在线 | 国产亚洲高清在线精品不卡 | 国产色视频网站免费观看 | 欧美黄色片免费观看 | 1000部禁片黄的免费看 | 黄 色 片在观看 | 无遮挡1000部拍拍拍免费 | 国产精品久久久久久久久久久久 | 亚洲精品一区二区三区网址 | 特别毛片 | 色噜噜狠狠在爱丁香 | 久久久精品中文字幕 | 国产福利精品在线 | 欧美不卡一区二区三区免 | 99久久国产综合精品麻豆 | 亚洲国产精品久久精品成人 | 日本免费一区二区在线观看 | 中文字幕 国产精品 | 六月久久 | 毛片一级在线观看 | 免费一级特黄欧美大片勹久久网 | 国产r级在线观看 | 成人区在线观看免费视频 |