強(qiáng)大Vue.js組件淺析
什么是組件:組件是Vue.js最強(qiáng)大的功能之一。組件可以擴(kuò)展HTML元素,封裝可重用的代碼。在較高層面上,組件是自定義的元素,Vue.js的編譯器為它添加特殊功能。在有些情況下,組件也可以是原生HTML元素的形式,以is特性擴(kuò)展。
如何注冊組件?
需要使用Vue.extend方法創(chuàng)建一個組件,然后使用Vue.component方法注冊組件。Vue.extend方法格式如下:
var MyComponent = Vue.extend({ // 選項...后面再介紹 })
如果想要其他地方使用這個創(chuàng)建的組件,還得個組件命個名:
Vue.component('my-component', MyComponent)
命名之后即可在HTML標(biāo)簽中使用這個組件名稱,像使用DOM元素一樣。下面來看看一個完整的組件注冊和使用例子。
html代碼:
<div id="example"> <my-component></my-component> </div>
js代碼:
// 定義 var MyComponent = Vue.extend({ template: '<div>A custom component!</div>' }) // 注冊 Vue.component('my-component', MyComponent) // 創(chuàng)建根實(shí)例 new Vue({ el: '#example' })
輸出結(jié)果:
<div id="example"> <div>A custom component!</div> </div
嵌套組件
組件本身也可以包含組件,下面的parent組件就包含了一個命名為child-component組件,但這個組件只能被parent組件使用:
var child = Vue.extend({ template: '<div>A custom component!</div>' }); var parent = Vue.extend({ template: '<div>Parent Component: <child-component></child-component></div>', components: { 'child-component': child } }); Vue.component("parent-component", parent);
上面的定義過程比較繁瑣,也可以不用每次都調(diào)用Vue.component和Vue.extend方法:
// 在一個步驟中擴(kuò)展與注冊 Vue.component('my-component', { template: '<div>A custom component!</div>' }) // 局部注冊也可以這么做 var Parent = Vue.extend({ components: { 'my-component': { template: '<div>A custom component!</div>' } } })
動態(tài)組件
多個組件可以使用同一個掛載點(diǎn),然后動態(tài)的在他們之間切換。使用保留的<component>元素,動態(tài)地綁定到它的is特性。下面的列子在同一個vue實(shí)例下掛了home、posts、archive三個組件,通過特性currentView動態(tài)切換組件顯示。
html代碼:
<div id="dynamic"> <button id="home">Home</button> <button id="posts">Posts</button> <button id="archive">Archive</button> <br> <component :is="currentView"></component> </div>
js代碼:
var vue = new Vue({ el:"#dynamic", data: { currentView: "home" }, components: { home:{ template: "Home" }, posts: { template: "Posts" }, archive: { template: "Archive" } } }); document.getElementById("home").onclick = function(){ vue.currentView = "home"; }; document.getElementById("posts").onclick = function(){ vue.currentView = "posts"; }; document.getElementById("archive").onclick = function(){ vue.currentView = "archive"; };
組件和v-for
<my-component v-for="item in items"></my-component>
不能傳遞數(shù)據(jù)給組件,因為組件的作用域是獨(dú)立的。為了傳遞數(shù)據(jù)給組件,應(yīng)當(dāng)使用props:
<my-component
v-for="item in items"
:item="item"
:index="$index">
</my-component>
不自動把 item 注入組件的原因是這會導(dǎo)致組件跟當(dāng)前 v-for 緊密耦合。顯式聲明數(shù)據(jù)來自哪里可以讓組件復(fù)用在其它地方。
深入響應(yīng)式原理
在組件綁定數(shù)據(jù)時,如何綁定才能夠有效,并且可動態(tài)修改、添加屬性?看看下面的原理介紹。
如何追蹤變化:把一個不同對象傳給vue實(shí)例作為data的選項,vue.js將遍歷它的屬性,用Object.defineProperty將它轉(zhuǎn)換為getter/setter。這是ES5特性,所有vue.js不支持IE8或更低版本。
模板中每個指令/數(shù)據(jù)綁定都有一個對應(yīng)的watcher對象,在計算過程中它把屬性記錄為依賴。之后當(dāng)依賴的setter被調(diào)用時 ,會觸發(fā)watcher重新計算。流程如下所示:
變化檢測問題:vue.js不能檢測到對象屬性的添加或刪除,屬性必須在data上才能讓vue.js轉(zhuǎn)換它為getter/setter模式,才能有響應(yīng)。例如:
var data = { a: 1 }; var vm = new Vue({ data: data }); // `vm.a` 和 `data.a` 現(xiàn)在是響應(yīng)的 vm.b = 2 // `vm.b` 不是響應(yīng)的 data.b = 2 // `data.b` 不是響應(yīng)的
不過,也有辦法在實(shí)例創(chuàng)建后添加屬性并且讓它是相應(yīng)的??梢允褂胹et(key,value)實(shí)例方法:
vm. set('b', 2)
// `vm.b` 和 `data.b` 現(xiàn)在是響應(yīng)的
對于普通對象可以使用全局方法:Vue.set(object, key, value):
Vue.set(data, 'c', 3)
// `vm.c` 和 `data.c` 現(xiàn)在是響應(yīng)的
初始化數(shù)據(jù):盡管Vue.js提供動態(tài)的添加相應(yīng)屬性,還是推薦在data對象上聲明所有的相應(yīng)屬性。
不這么做:
var vm = new Vue({ template: '<div>{{msg}}</div>' }) // 然后添加 `msg` vm.$set('msg', 'Hello!')
應(yīng)該這么做:
var vm = new Vue({ data: { // 以一個空值聲明 `msg` msg: '' }, template: '<div>{{msg}}</div>' }) // 然后設(shè)置 `msg` vm.msg = 'Hello!'
組件完整案例
下面介紹的例子實(shí)現(xiàn)了模態(tài)窗口功能,代碼也比較簡單。
html代碼:
<!-- 實(shí)現(xiàn)script定義一個模板 --> <script type="x/template" id="modal-template"> <!--模板是否顯示通過v-show="show"來設(shè)置, transition設(shè)置動畫效果--> <div class="modal-mask" v-show="show" transition="modal"> <div class="modal-wrapper"> <div class="modal-container"> <div class="modal-header"> <!--slot 相當(dāng)于header占位符--> <slot name="header"> default header </slot> </div> <div class="modal-body"> <!--slot 相當(dāng)于body占位符--> <slot name="body"> default body </slot> </div> <div class="modal-footer"> <!--slot 相當(dāng)于footer占位符--> <slot name="footer"> default footer </slot> <button class="modal-default-button" @click="show = false">OK</button> </div> </div> </div> </div> </script> <div id="app"> <!--點(diǎn)擊按鈕時設(shè)置vue實(shí)例特性showModal的值為true--> <button id="show-modal" @click="showModal = true">show modal</button> <!--modal是自定義的一個插件,插件的特性show綁定vue實(shí)例的showModal特性--> <modal :show.sync="showModal"> <!--替換modal插件中slot那么為header的內(nèi)容--> <h3 slot="header">Custom Header</h3> </modal> </div>
js代碼:
//定義一個插件,名稱為modal Vue.component("modal", { //插件的模板綁定id為modal-template的DOM元素內(nèi)容 template: "#modal-template", props: { //特性,類型為布爾 show:{ type: Boolean, required: true, twoWay: true } } }); //實(shí)例化vue,作用域在id為app元素下, new Vue({ el: "#app", data: { //特性,默認(rèn)值為false showModal: false } });
css代碼:
.modal-mask { position: fixed; z-index: 9998; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, .5); display: table; transition: opacity .3s ease; } .modal-wrapper { display: table-cell; vertical-align: middle; } .modal-container { width: 300px; margin: 0px auto; padding: 20px 30px; background-color: #fff; border-radius: 2px; box-shadow: 0 2px 8px rgba(0, 0, 0, .33); transition: all .3s ease; font-family: Helvetica, Arial, sans-serif; } .modal-header h3 { margin-top: 0; color: #42b983; } .modal-body { margin: 20px 0; } .modal-default-button { float: right; } /* * the following styles are auto-applied to elements with * v-transition="modal" when their visiblity is toggled * by Vue.js. * * You can easily play with the modal transition by editing * these styles. */ .modal-enter, .modal-leave { opacity: 0; } .modal-enter .modal-container, .modal-leave .modal-container { -webkit-transform: scale(1.1); transform: scale(1.1); }
本文已被整理到了《Vue.js前端組件學(xué)習(xí)教程》,歡迎大家學(xué)習(xí)閱讀。
關(guān)于vue.js組件的教程,請大家點(diǎn)擊專題vue.js組件學(xué)習(xí)教程進(jìn)行學(xué)習(xí)。
由于自己在項目中還沒怎么深入使用組件的功能,所以自己對組件的理解也不深入,介紹的比較膚淺,謝謝大家的閱讀。
相關(guān)文章
在線使用iconfont字體圖標(biāo)的簡單實(shí)現(xiàn)
這篇文章主要介紹了在線使用iconfont字體圖標(biāo)的簡單實(shí)現(xiàn)方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-09-09Vue如何解決子組件data從props中無法動態(tài)更新數(shù)據(jù)問題
這篇文章主要介紹了Vue如何解決子組件data從props中無法動態(tài)更新數(shù)據(jù)問題,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-10-10vue router-view的嵌套顯示實(shí)現(xiàn)
本文主要介紹了vue router-view嵌套顯示,文中通過示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下2021-07-07VUE2.0+Element-UI+Echarts封裝的組件實(shí)例
下面小編就為大家分享一篇VUE2.0+Element-UI+Echarts封裝的組件實(shí)例,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-03-03