真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

vue組件(全局,局部,動態(tài)加載組件)

說說Vue.js組件

成都創(chuàng)新互聯(lián)專注于企業(yè)全網(wǎng)整合營銷推廣、網(wǎng)站重做改版、峨眉山網(wǎng)站定制設(shè)計、自適應品牌網(wǎng)站建設(shè)、H5建站電子商務商城網(wǎng)站建設(shè)、集團公司官網(wǎng)建設(shè)、外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應式網(wǎng)頁設(shè)計等建站業(yè)務,價格優(yōu)惠性價比高,為峨眉山等各大城市提供網(wǎng)站開發(fā)制作服務。

什么是組件:組件是Vue.js最強大的功能之一。組件可以擴展HTML元素,封裝可重用的代碼。在較高層面上,組件是自定義的元素,Vue.js的編譯器為它添加特殊功能。在有些情況下,組件也可以是原生HTML元素的形式,以is特性擴展。

vue組件有兩種,一種是全局組件,一種是局部組件。整個項目經(jīng)常用到的用全局寫法,用到比較少的專供特定頁面用的使用局部組件。

one----全局組件引入寫法:在項目的main.js中:

第一種,在main.js直接寫template:' 模版字符串'

Vue.component('tab-home', { template: `
Home component
` }) Vue.component('tab-posts', { template: `
Posts component
` }) Vue.component('tab-archive', { template: `
Archive component
` })

第二種,分別寫tab-home.vue Tab-Posts'.vue Tab-Archive'.vue然后import TabHome from ‘ Tab-Home.vue '

 Vue.use( TabHome); // 自定義全局組件的時候需要Vue.use();
  Vue.component('tab-home', TabHome)); //初始化組件
two ----局部組件引入 ,寫在需要的引入的組件,如helloworld
import TabAa from './tab-aa.vue'
import TabBb from './tab-bb.vue'
import TabCc from './tab-cc.vue'
export default {
name: 'HelloWorld',
components:{TabAa,TabBb,TabCc},
three----動態(tài)組件(tab切換 使用:is="currentTabComponent")

export default {
name: 'HelloWorld',
components:{TabAa,TabBb,TabCc},
data () {
return {
currentTab: 'Home',
tabs: ['Home', 'Posts', 'Archive','Aa','Bb','Cc'],
loginType:'username',
msg: 'Welcome to Your Vue.js App'
}
},
computed: {
currentTabComponent: function () {
return 'tab-'+this.currentTab.toLowerCase()
}
},
樣式:
.tab-button {
padding: 6px 10px;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
border: 1px solid #ccc;
cursor: pointer;
background: #f0f0f0;
margin-bottom: -1px;
margin-right: -1px;
}
.tab-button:hover {
background: #e0e0e0;
}
.tab-button.active {
background: #e0e0e0;
}
.tab {
border: 1px solid #ccc;
padding: 10px;
}

總結(jié)

以上所述是小編給大家介紹的vue組件(全局,局部,動態(tài)加載組件)實例詳解,希望對大家有所幫助,如果大家有任何疑問歡迎給我留言,小編會及時回復大家的!


網(wǎng)頁名稱:vue組件(全局,局部,動態(tài)加載組件)
當前URL:http://weahome.cn/article/gcjehg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部