亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何正確的使用Vue組件

發布時間:2021-05-12 17:14:25 來源:億速云 閱讀:121 作者:Leah 欄目:web開發

如何正確的使用Vue組件?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

Vue組件概述

組件(Component)是Vue.js最強大的功能之一。組件可以擴展HTML元素,封裝可重用的代碼。根據項目需求,抽象出一些組件,每個組件里包含了展現、功能和樣式。每個頁面,根據自己所需,使用不同的組件來拼接頁面。這種開發模式使前端頁面易于擴展,且靈活性高,而且組件之間也實現了解耦。

在 Vue 里,一個組件本質上是一個擁有預定義選項的一個 Vue 實例

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

下面是一個最簡單的模塊示例

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

Vue注冊組件

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

全局注冊

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

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

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

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

<div id="example">
 <my-component></my-component>
</div>
<script>
// 注冊
Vue.component('my-component', {
 template: '<div>A custom component!</div>'
})
// 創建根實例
new Vue({
 el: '#example'
})
</script>

局部注冊

通過使用組件實例選項components注冊,可以使組件僅在另一個實例/組件的作用域中可用

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

組件樹

使用組件實例選項components注冊,可以實現組件樹的效果

<div id="example">
 <my-component></my-component>
</div>
<script>
// 注冊
var headerTitle = {
  template: '<p>我是標題</p>',
};
var headerContent = {
  template: '<p>我是內容</p>',
};
var header = {
 template: `
   <div class="hd">
      <header-content></header-content>
      <header-title></header-title>
   </div>
 `,
  components: {
  'header-content': headerContent,
  'header-title': headerTitle
 }  
};
// 創建實例
new Vue({
 el: '#example',
  components: {
  'my-component': header
 } 
})
</script>

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

<div id="app">
 <app-nav></app-nav>
 <app-view>
  <app-sidebar></app-sidebar>
  <app-content></app-content>
 </app-view>
</div>

v-once

盡管在 Vue 中渲染 HTML 很快,不過當組件中包含大量靜態內容時,可以考慮使用 v-once 將渲染結果緩存起來

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

Vue組件的模板分離

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

script

在script標簽里使用 text/x-template 類型,并且指定一個 id

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

上面的代碼等價于

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

下面是一個簡單示例

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

template

如果使用<template>標簽,則不需要指定type屬性

<div id="example">
 <my-component></my-component>
</div>
<template id="hello-world-template">
 <div>hello world!</div> 
</template>
<script>
// 注冊
Vue.component('my-component', {
 template: '#hello-world-template'
})
// 創建根實例
new Vue({
 el: '#example'
})
</script>

Vue組件的命名約定

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

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

當注冊組件時,使用中劃線、小駝峰、大駝峰這三種任意一種都可以

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

Vue組件嵌套限制

并不是所有的元素都可以嵌套模板,因為要受到HTML元素嵌套規則的限制,尤其像<ul>,<ol>,<table>,<select> 限制了能被它包裹的元素,而一些像 <option> 這樣的元素只能出現在某些其它元素內部

[注意]關于HTML標簽的詳細嵌套規則移步至此

在自定義組件中使用這些受限制的元素時會導致一些問題,例如

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

自定義組件 <my-row> 被認為是無效的內容,因此在渲染的時候會導致錯誤

<script>
// 注冊
var header = {
 template: '<div class="hd">我是標題</div>' 
};
// 創建實例
new Vue({
 el: '#example',
  components: {
  'my-row': header
 } 
})
</script>

is屬性

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

<table id="example">
 <tr is="my-row"></tr>
</table>
<script>
// 注冊
var header = {
 template: '<div class="hd">我是標題</div>'
};
// 創建實例
new Vue({
 el: '#example',
  components: {
  'my-row': header
 } 
})
</script>

Vue組件的根元素

Vue強制要求每一個Vue實例(組件本質上就是一個Vue實例)需要有一個根元素

如下所示,則會報錯

<div id="example">
 <my-component></my-component>
</div>
<script>
// 注冊
Vue.component('my-component', {
 template: `
  <p>第一段</p>
  <p>第二段</p>
 `,
})
// 創建根實例
new Vue({
 el: '#example'
})
</script>

需要改寫成如下所示

<script>
// 注冊
Vue.component('my-component', {
 template: `
  <div>
   <p>第一段</p>
   <p>第二段</p>
  </div> 
 `,
})
// 創建根實例
new Vue({
 el: '#example'
})
</script>

Vue組件數據傳遞

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

<div id="example">
 <my-component></my-component>
 <my-component></my-component>
 <my-component></my-component>
</div>
<script>
// 注冊
Vue.component('my-component', {
 template: '<div>{{message}}</div>',
 data:{
   message: 'hello'
 }
})
// 創建根實例
new Vue({
 el: '#example'
})
</script>

運行上面的代碼,會使Vue停止執行,并在控制臺發出錯誤提示,告訴你在組件中 data 必須是一個函數

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

<script>
// 注冊
var data = {counter: 0}
Vue.component('my-component', {
 template: '<button v-on:click="counter += 1">{{ counter }}</button>',
 data:function(){
   return data;
 }
})
// 創建根實例
new Vue({
 el: '#example'
})
</script>

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

當一個組件被定義, data 需要聲明為返回一個初始數據對象的函數,因為組件可能被用來創建多個實例。如果 data 仍然是一個純粹的對象,則所有的實例將共享引用同一個數據對象。通過提供 data 函數,每次創建一個新實例后,能夠調用 data 函數,從而返回初始數據的一個全新副本數據對象

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

<script>
// 注冊
Vue.component('my-component', {
 template: '<button v-on:click="counter += 1">{{ counter }}</button>',
 data:function(){
   return {counter: 0};
 }
})
// 創建根實例
new Vue({
 el: '#example'
})
</script>

現在每個 counter 都有它自己內部的狀態了

Vue組件原生事件

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

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

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

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

vue是什么

Vue是一套用于構建用戶界面的漸進式JavaScript框架,Vue與其它大型框架的區別是,使用Vue可以自底向上逐層應用,其核心庫只關注視圖層,方便與第三方庫和項目整合,且使用Vue可以采用單文件組件和Vue生態系統支持的庫開發復雜的單頁應用。

看完上述內容,你們掌握如何正確的使用Vue組件的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vue
AI

托里县| 华坪县| 安图县| 丘北县| 梁平县| 阳新县| 兴和县| 台北市| 永福县| 台中县| 仁化县| 垣曲县| 西峡县| 乌兰察布市| 张掖市| 东至县| 玉林市| 浮山县| 龙南县| 裕民县| 中阳县| 祥云县| 扶风县| 花莲市| 黄骅市| 阳信县| 吉水县| 濮阳县| 遂昌县| 青铜峡市| 洪湖市| 谷城县| 南陵县| 大城县| 固安县| 合水县| 温泉县| 香格里拉县| 湘阴县| 汉中市| 桃江县|