最新文章專題視頻專題問答1問答10問答100問答1000問答2000關鍵字專題1關鍵字專題50關鍵字專題500關鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關鍵字專題關鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當前位置: 首頁 - 科技 - 知識百科 - 正文

Vue 多層組件嵌套二種實現(xiàn)方式(測試實例)

來源:懂視網 責編:小采 時間:2020-11-27 22:30:45
文檔

Vue 多層組件嵌套二種實現(xiàn)方式(測試實例)

Vue 多層組件嵌套二種實現(xiàn)方式(測試實例):最近在研究vue組件的學習,給自己留個筆記,也分享給大家,希望能對大家有所幫助 <!DOCTYPE html> <html> <head> <meta charset=utf-8> <title>Vue 測試實例-組件嵌套二種方式</title>
推薦度:
導讀Vue 多層組件嵌套二種實現(xiàn)方式(測試實例):最近在研究vue組件的學習,給自己留個筆記,也分享給大家,希望能對大家有所幫助 <!DOCTYPE html> <html> <head> <meta charset=utf-8> <title>Vue 測試實例-組件嵌套二種方式</title>

最近在研究vue組件的學習,給自己留個筆記,也分享給大家,希望能對大家有所幫助

<!DOCTYPE html>
<html>

<head>
 <meta charset="utf-8">
 <title>Vue 測試實例-組件嵌套二種方式</title>
 <script src="https://www.gxlcms.com//cdn.bootcss.com/vue/2.1.10/vue.js"></script>
</head>

<body>
 <div id="app">
 <Itemlist1>
 <Item v-for="item in items1" :data="item"/>
 </Itemlist1>

 <Itemlist2 :itemlist="items2"></Itemlist2>
 </div>
 <script>

 Vue.component('Item',{
 template: '<div>{{data.name}}</div>',
 props: {
 data:Object
 }

 });
 // 方式一:嵌套組件時用<slot></slot>,
 Vue.component("Itemlist1", {
 template: '<div @click="ok"><slot></slot></div>',
 props: {
 itemList: Array
 },
 methods: {
 ok: function() {
 alert(this.abc);
 }
 }
 });

 // 方式二:
 Vue.component("Itemlist2", {
 template: '<div @click="ok"><Item v-for="item in itemlist" :data="item"/></div>',
 props: {
 itemlist: Array
 },
 methods: {
 ok: function() {
 alert(this.abc);
 }
 }
 });

 // 創(chuàng)建根實例
 var vueApp = new Vue({
 el: '#app',
 data: {
 items1: [{
 'name': "item1"
 }, {
 'name': "item2"
 }, {
 'name': "item3"
 }],
 items2: [{
 'name': "item1-1"
 }, {
 'name': "item2-1"
 }, {
 'name': "item3-1"
 }]
 }
 })
 </script>
</body>

</html>

聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

Vue 多層組件嵌套二種實現(xiàn)方式(測試實例)

Vue 多層組件嵌套二種實現(xiàn)方式(測試實例):最近在研究vue組件的學習,給自己留個筆記,也分享給大家,希望能對大家有所幫助 <!DOCTYPE html> <html> <head> <meta charset=utf-8> <title>Vue 測試實例-組件嵌套二種方式</title>
推薦度:
標簽: VUE vu 測試實例
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top