您好,登錄后才能下訂單哦!
這篇文章給大家介紹Vue中的局部組件是什么,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
在Vue中我們可以自己定義(注冊)局部組件
定義組件名的方式:
var ComponentA = { /* ... */ } var ComponentB = { /* ... */ }
然后在 components 選項中定義你想要使用的組件:
new Vue({ el: '#app', // 組件中心 components: { // 在視圖層渲染 局部注冊組件時 // component-a:你要在視圖層調用時使用的名稱 // ComponentA: 局部注冊組件名稱 'component-a': ComponentA, 'component-b': ComponentB } })
在視圖層調用局部組件:
<div id="app"> <component-a></component-a> <component-b></component-b> </div>
舉個列子:
<body> <div id="app"> <component-a></component-a> <component-b></component-b> </div> <script src="./js/vue.js"></script> <script> let componentA = { template:` <p>我是局部組件1</p> ` } let componentB = { template:` <p>我是局部組件2</p> ` } let vm = new Vue({ el:'#app', data:{ }, components:{ "component-a":componentA, "component-b":componentB } }) </script>
輸出結果為:
關于Vue中的局部組件是什么就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。