Vue組件基礎(chǔ)用法

2021-8-11    前端達(dá)人

前面的話

組件(Component)是Vue.js最強(qiáng)大的功能之一。組件可以擴(kuò)展HTML元素,封裝可重用的代碼。根據(jù)項(xiàng)目需求,抽象出一些組件,每個(gè)組件里包含了展現(xiàn)、功能和樣式。每個(gè)頁面,根據(jù)自己所需,使用不同的組件來拼接頁面。這種開發(fā)模式使前端頁面易于擴(kuò)展,且靈活性高,而且組件之間也實(shí)現(xiàn)了解耦。本文將詳細(xì)介紹Vue組件基礎(chǔ)用法

 

概述

在 Vue 里,一個(gè)組件本質(zhì)上是一個(gè)擁有預(yù)定義選項(xiàng)的一個(gè) Vue 實(shí)例

組件是一個(gè)自定義元素或稱為一個(gè)模塊,包括所需的模板、邏輯和樣式。在HTML模板中,組件以一個(gè)自定義標(biāo)簽的形式存在,起到占位符的功能。通過Vue.js的聲明式渲染后,占位符將會被替換為實(shí)際的內(nèi)容

下面是一個(gè)最簡單的模塊示例

<div id="app"> <xiaohuochai></xiaohuochai> </div>

 

注冊組件

組件注冊包括全局注冊和局部注冊兩種

【全局注冊】

要注冊一個(gè)全局組件,可以使用 Vue.component(tagName, options)

Vue.component('my-component', { // 選項(xiàng) })

組件在注冊之后,便可以在父實(shí)例的模塊中以自定義元素 <my-component></my-component> 的形式使用

[注意]要確保在初始化根實(shí)例之前注冊了組件

<div id="example"> <my-component></my-component> </div>
復(fù)制代碼
<script> // 注冊 Vue.component('my-component', {
  template: '<div>A custom component!</div>' }) // 創(chuàng)建根實(shí)例 new Vue({
  el: '#example' }) </script>
復(fù)制代碼

【局部注冊】

通過使用組件實(shí)例選項(xiàng)components注冊,可以使組件僅在另一個(gè)實(shí)例/組件的作用域中可用

<div id="example"> <my-component></my-component> </div>
復(fù)制代碼
<script> // 注冊 var Child = {
  template: '<div>A custom component!</div>' }; // 創(chuàng)建根實(shí)例 new Vue({
  el: '#example',
    components: { // <my-component> 將只在父模板可用 'my-component': Child
  }  
}) </script>
復(fù)制代碼

組件樹

使用組件實(shí)例選項(xiàng)components注冊,可以實(shí)現(xiàn)組件樹的效果

<div id="example"> <my-component></my-component> </div>
復(fù)制代碼
<script> // 注冊 var headerTitle = {
    template: '<p>我是標(biāo)題</p>',
}; var headerContent = {
    template: '<p>我是內(nèi)容</p>',
}; var header = {
  template: ` <div class="hd"> <header-content></header-content> <header-title></header-title> </div>  `,
    components: { 'header-content': headerContent, 'header-title': headerTitle
  }   
}; // 創(chuàng)建實(shí)例 new Vue({
  el: '#example',
    components: { 'my-component': header
  }  
}) </script>
復(fù)制代碼

對于大型應(yīng)用來說,有必要將整個(gè)應(yīng)用程序劃分為組件,以使開發(fā)可管理。一般地組件應(yīng)用模板如下所示

復(fù)制代碼
<div id="app"> <app-nav></app-nav> <app-view> <app-sidebar></app-sidebar> <app-content></app-content> </app-view> </div>
復(fù)制代碼

【v-once】

盡管在 Vue 中渲染 HTML 很快,不過當(dāng)組件中包含大量靜態(tài)內(nèi)容時(shí),可以考慮使用 v-once 將渲染結(jié)果緩存起來

Vue.component('my-component', {
  template: '<div v-once>hello world!...</div>'
})

 

模板分離

在組件注冊中,使用template選項(xiàng)中拼接HTML元素比較麻煩,這也導(dǎo)致了HTML和JS的高耦合性。慶幸的是,Vue.js提供了兩種方式將定義在JS中的HTML模板分離出來

【script】

在script標(biāo)簽里使用 text/x-template 類型,并且指定一個(gè) id

<script type="text/x-template" id="hello-world-template"> <p>Hello hello hello</p> </script>
Vue.component('hello-world', {
  template: '#hello-world-template'
})

上面的代碼等價(jià)于

Vue.component('hello-world', {
  template: '<p>Hello hello hello</p>'
})

下面是一個(gè)簡單示例

<div id="example"> <my-component></my-component> </div>
<script type="text/x-template" id="hello-world-template"> <div>hello world!</div>  </script>
復(fù)制代碼
<script> Vue.component('my-component', {
  template: '#hello-world-template' }) new Vue({
  el: '#example' }) </script>
復(fù)制代碼

【template】

如果使用<template>標(biāo)簽,則不需要指定type屬性

<div id="example"> <my-component></my-component> </div>
<template id="hello-world-template"> <div>hello world!</div> </template>
復(fù)制代碼
<script> // 注冊 Vue.component('my-component', {
  template: '#hello-world-template' }) // 創(chuàng)建根實(shí)例 new Vue({
  el: '#example' }) </script>
復(fù)制代碼

 

命名約定

對于組件的命名,W3C規(guī)范是字母小寫且包含一個(gè)中劃線(-),雖然Vue沒有強(qiáng)制要求,但最好遵循規(guī)范  

<!-- 在HTML模版中始終使用 kebab-case --> <kebab-cased-component></kebab-cased-component> <camel-cased-component></camel-cased-component> <pascal-cased-component></pascal-cased-component>

當(dāng)注冊組件時(shí),使用中劃線、小駝峰、大駝峰這三種任意一種都可以

復(fù)制代碼
// 在組件定義中
components: {
  // 使用 中劃線 形式注冊
  'kebab-cased-component': { /* ... */ },
  // 使用 小駝峰 形式注冊
  'camelCasedComponent': { /* ... */ },
  // 使用 大駝峰 形式注冊
  'PascalCasedComponent': { /* ... */ }
}
復(fù)制代碼

 

嵌套限制

并不是所有的元素都可以嵌套模板,因?yàn)橐艿紿TML元素嵌套規(guī)則的限制,尤其像<ul>,<ol>,<table><select> 限制了能被它包裹的元素,而一些像 <option> 這樣的元素只能出現(xiàn)在某些其它元素內(nèi)部

[注意]關(guān)于HTML標(biāo)簽的詳細(xì)嵌套規(guī)則移步至此

在自定義組件中使用這些受限制的元素時(shí)會導(dǎo)致一些問題,例如

<table id="example"> <my-row>...</my-row> </table>

自定義組件 <my-row> 被認(rèn)為是無效的內(nèi)容,因此在渲染的時(shí)候會導(dǎo)致錯(cuò)誤

復(fù)制代碼
<script> // 注冊 var header = {
  template: '<div class="hd">我是標(biāo)題</div>' }; // 創(chuàng)建實(shí)例 new Vue({
  el: '#example',
    components: { 'my-row': header
  }  
}) </script>
復(fù)制代碼

【is屬性】

   變通的方案是使用特殊的 is 屬性

<table id="example"> <tr is="my-row"></tr> </table>
復(fù)制代碼
<script> // 注冊 var header = {
  template: '<div class="hd">我是標(biāo)題</div>' }; // 創(chuàng)建實(shí)例 new Vue({
  el: '#example',
    components: { 'my-row': header
  }  
}) </script>
復(fù)制代碼

 

根元素

Vue強(qiáng)制要求每一個(gè)Vue實(shí)例(組件本質(zhì)上就是一個(gè)Vue實(shí)例)需要有一個(gè)根元素

如下所示,則會報(bào)錯(cuò)

<div id="example">
  <my-component></my-component>
</div>
復(fù)制代碼
<script>
// 注冊 Vue.component('my-component', {
  template: ` <p>第一段</p> <p>第二段</p>  `,
})
// 創(chuàng)建根實(shí)例
new Vue({
  el: '#example' })
</script>
復(fù)制代碼

需要改寫成如下所示

復(fù)制代碼
<script>
// 注冊 Vue.component('my-component', {
  template: ` <div> <p>第一段</p> <p>第二段</p> </div>  `,
})
// 創(chuàng)建根實(shí)例
new Vue({
  el: '#example' })
</script>
復(fù)制代碼

 

data數(shù)據(jù)

一般地,我們在Vue實(shí)例對象或Vue組件對象中,我們通過data來傳遞數(shù)據(jù)

<div id="example"> <my-component></my-component> <my-component></my-component> <my-component></my-component> </div>
復(fù)制代碼
<script> // 注冊 Vue.component('my-component', {
  template: '<div>{{message}}</div>',
  data:{
      message: 'hello' }
}) // 創(chuàng)建根實(shí)例 new Vue({
  el: '#example' }) </script>
復(fù)制代碼

運(yùn)行上面的代碼,會使Vue停止執(zhí)行,并在控制臺發(fā)出錯(cuò)誤提示,告訴你在組件中 data 必須是一個(gè)函數(shù)

可以用如下方式來繞開Vue的錯(cuò)誤提示

復(fù)制代碼
<script> // 注冊 var data = {counter: 0}
Vue.component('my-component', {
  template: '<button v-on:click="counter += 1">{{ counter }}</button>',
  data:function(){ return data;
  }
}) // 創(chuàng)建根實(shí)例 new Vue({
  el: '#example' }) </script>
復(fù)制代碼

由于這三個(gè)組件共享了同一個(gè) data,因此增加一個(gè) counter 會影響所有組件

當(dāng)一個(gè)組件被定義, data 需要聲明為返回一個(gè)初始數(shù)據(jù)對象的函數(shù),因?yàn)榻M件可能被用來創(chuàng)建多個(gè)實(shí)例。如果 data 仍然是一個(gè)純粹的對象,則所有的實(shí)例將共享引用同一個(gè)數(shù)據(jù)對象。通過提供 data 函數(shù),每次創(chuàng)建一個(gè)新實(shí)例后,能夠調(diào)用 data 函數(shù),從而返回初始數(shù)據(jù)的一個(gè)全新副本數(shù)據(jù)對象

因此,可以通過為每個(gè)組件返回全新的 data 對象來解決這個(gè)問題: 

復(fù)制代碼
<script> // 注冊 Vue.component('my-component', {
  template: '<button v-on:click="counter += 1">{{ counter }}</button>',
  data:function(){ return {counter: 0};
  }
}) // 創(chuàng)建根實(shí)例 new Vue({
  el: '#example' }) </script>
復(fù)制代碼

現(xiàn)在每個(gè) counter 都有它自己內(nèi)部的狀態(tài)了

 

原生事件

有時(shí)候,可能想在某個(gè)組件的根元素上監(jiān)聽一個(gè)原生事件。直接使用v-bind指令是不生效的

<div id="example"> <my-component @click="doTheThing"></my-component> <p>{{message}}</p> </div>
復(fù)制代碼
<script> Vue.component('my-component', {
  template: '<button>按鈕</button>',
}) new Vue({
  el: '#example',
  data:{
    message:0 },
  methods:{
    doTheThing(){ this.message++;
    }
  }
}) </script>
復(fù)制代碼

可以使用 .native 修飾 v-on指令即可

<div id="example"> <my-component @click.native="doTheThing"></my-component> <p>{{message}}</p> </div>
復(fù)制代碼
<script> Vue.component('my-component', {
  template: '<button>按鈕</button>',
}) new Vue({
  el: '#example',
  data:{
    message:0 },
  methods:{
    doTheThing(){ this.message++;
    }
  }
}) </script>
復(fù)制代碼



藍(lán)藍(lán)設(shè)計(jì)建立了UI設(shè)計(jì)分享群,每天會分享國內(nèi)外的一些優(yōu)秀設(shè)計(jì),如果有興趣的話,可以進(jìn)入一起成長學(xué)習(xí),請掃碼ben_lanlan,報(bào)下信息,會請您入群。歡迎您加入噢~~希望得到建議咨詢、商務(wù)合作,也請與我們聯(lián)系。

文章來源:csdn

分享此文一切功德,皆悉回向給文章原作者及眾讀者.
免責(zé)聲明:藍(lán)藍(lán)設(shè)計(jì)尊重原作者,文章的版權(quán)歸原作者。如涉及版權(quán)問題,請及時(shí)與我們?nèi)〉寐?lián)系,我們立即更正或刪除。

藍(lán)藍(lán)設(shè)計(jì)bouu.cn )是一家專注而深入的界面設(shè)計(jì)公司,為期望卓越的國內(nèi)外企業(yè)提供卓越的UI界面設(shè)計(jì)、BS界面設(shè)計(jì) 、 cs界面設(shè)計(jì) 、 ipad界面設(shè)計(jì) 、 包裝設(shè)計(jì) 、 圖標(biāo)定制 、 用戶體驗(yàn) 、交互設(shè)計(jì)、 網(wǎng)站建設(shè) 平面設(shè)計(jì)服務(wù)


分享本文至:

日歷

鏈接

個(gè)人資料

存檔