渲染一個「元組件」爲動態組件。依 is 的值,來決定哪一個組件被渲染。javascript
<!-- 動態組件由 vm 實例的屬性值 `componentId` 控制 -->
<component :is="componentId"></component>
複製代碼
具體能夠官網文檔中的html
這裏經過一個業務場景來闡述vue內置component組件的應用。 如圖所示,這裏展現經典註冊頁面,註冊分爲郵箱註冊和手機註冊,彈窗頂部有標籤能夠切換註冊類型,中間是註冊表單信息,郵箱註冊和手機註冊有着不同的表單內容,底部是註冊按鈕以及其餘操做。 通過分析手機註冊界面與郵箱註冊除了中間的表單內容不一致以外,其餘的界面內容是同樣的。 vue
實際項目代碼設計中,爲了保證複用性和可維護性,是會有一些可行的方案。這裏咱們採用vue內置的component組件來實現這一點。頂部tab切換的時候,type值發生改變,對應的表單的組件也發生了變化java
<template>
<div>
<a href="javascript:;" @click.prevent="handleCloseBtnClick"></a>
<div>
<h3>新用戶註冊</h3>
<div>
<span :class="{active: type === 'mobileForm'}" @click="type = mobileForm">手機註冊</span>
<span :class="{active: type === 'emailForm'}" @click="type = emailForm">郵箱註冊</span>
</div>
</div>
<component :is="type" ref="form">
<button @click="handleRegisterBtnClick">註冊</button>
<div ><span ><span>註冊視爲贊成</span><a> 《法律條款和隱私說明》</a></span></div>
<div><span>已有帳號<a href="javascript:;" @click.prevent="handleLoginBtnClick">直接登入>></a></span></div>
</component>
</div>
</template>
<script>
export default {
methods: {
handleRegisterBtnClick () {
this.$refs.form.validateData().then(() => {
this.$refs.form.getFormData()
})
}
}
}
</script>
複製代碼
用Vue內置component組件狀況下,通常實際被渲染的組件具備必定的共性,好比相同的屬性,相同的方法或者相同的初始化銷燬過程。好比目前這個場景中郵箱表單和手機表單都具備校驗方法(validateData)和獲取表單數據方法(getFormData)。 這種狀況下可使用vue提供的混合的功能。進一步抽離 mixins.jsgit
export default {
methods: {
validateData() {
return Promise.resolve()
},
getFormData() {
return {}
}
}
}
複製代碼
email-form.vuegithub
<script>
import minx from './mixins'
export default {
mixins: [mixins],
methods: {
getFormData() {
return { email: 'example@example.com' }
}
}
}
</script>
複製代碼
若是有自定義的需求,能夠重寫mixins中的方法。json
在管理後臺項目中,表格常常會被用到。咱們但願表格的td是文本、進度條、checkbox等等,且但願經過傳一個json配置就能夠渲染出。使用vue內置的component組件能夠起到很讚的做用。 api
好比這樣的一個table使用方式<template>
<vue-table ref="table" :columns="columns" :datum="datum"></vue-table>
</template>
<script>
export default {
data () {
return {
columns: [
{ title: 'ID', width: '30', dataKey: 'id' },
{ title: '進度組件', dataKey: 'progress', render: { type: 'progress2', max: 100, precision: 2 } }
],
datum: [{ id: '1', name: '進度0', progress: 10 }]
}
}
}
</script>
複製代碼
table中使用component的實現bash
<td v-for="column of columns">
<component :is="`${TYPE_PRE}${columns.render.type}`" :row-data="rowData" :params="columns.render"></component>
</td>
複製代碼
在管理後臺項目中,表單也常常須要用到,咱們也一樣但願表單的某一項是文本框,下拉框,時間選擇框,富文本等等等等,且但願經過傳一個json配置就能夠渲染出。vue內置的component組件能夠依然能夠實現這樣一個美好的願景。 ide
好比這樣的一個form使用方式<template>
<c-form :cells="cells" ref="form">
<button class="button is-primary" :class="{ 'is-disabled': isSubmitBtnDisabled }" @click.prevent="submit">提交</button>
</c-form>
</template>
<script>
export default {
computed: {
cells () {
return [
{
field: 'name',
label: '名稱',
type: 'textfield',
attrs: { placeholder: '名稱' },
validate: { required: { message: '請輸入名稱'} }
},
{
field: 'enable',
label: '啓用標誌',
type: 'dropdown',
extra: {options: [{ label: '啓用', value: 1 }, { label: '禁用', value: 2 }] }
}
]
}
}
}
</script>
複製代碼
form中使用component的實現
<form>
<c-form-cell v-for="cell of cellList" :key="cell.field" :field="cell.field">
<component
:is="`${TYPE_PRE}${cell.type}`"
:field="cell.field"
:attrs="cell.attrs"
:extra="cell.extra"
:validate="cell.validate"
:cells="cell.cells">
</component>
</c-form-cell>
</form>
複製代碼
表單和表格在基於VUE的後臺引擎開源項目中都有實現,歡迎star和fork。
Vue上手簡單,文檔清晰完備,人生苦短,我用vue。(React粉絲Bie Peng Wo)