91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

怎么在vue中嵌套父子組件

發布時間:2021-04-12 17:28:49 來源:億速云 閱讀:216 作者:Leah 欄目:web開發

怎么在vue中嵌套父子組件?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

先創建一個構造器

var myComponent = Vue.extend({
  template: '...'
})

用Vue.component注冊,將構造器用作組件(例為全局組件)

Vue.component('my-component' , myComponent)

注冊局部組件:

var Child = Vue.extend({ /* ... */ })

var Parent = Vue.extend({
 template: '...',
 components: {
  // <my-component> 只能用在父組件模板內
  'my-component': Child
 }
})

注冊語法糖,簡化過程

// 在一個步驟中擴展與注冊
Vue.component('my-component', {
 template: '<div>A custom component!</div>'
})

// 局部注冊也可以這么做
var Parent = Vue.extend({
 components: {
  'my-component': {
   template: '<div>A custom component!</div>'
  }
 }
})

父子組件嵌套的例子:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>index</title>
</head>
<body>
<div id="app">
  <parent></parent>
</div>
<script src="vue.js"></script>
<script>
  var childComponent = Vue.extend({
    template: '<p>this is child template</p>'
  });
  Vue.component("parent",{
    template: '<p>this is parent template</p><child></child><child></child>',
    components: {
      'child': childComponent,
    }
  });
  var app = new Vue({
    el: '#app'
  });
</script>
</body>
</html>

其與以下寫法等價:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>index</title>
</head>
<body>
<template id="child">
  <p>this is child template</p>
</template>
<template id="parent">
  <p>this is parent template</p>
  <child></child>
  <child></child>
</template>
<div id="app">
  <parent></parent>
</div>
<script src="vue.js"></script>
<script>
  var childComponent = Vue.extend({
    template: '#child'
  });
  Vue.component("parent",{
    template: '#parent',
    components: {
      'child': childComponent,
    }
  });
  var app = new Vue({
    el: '#app'
  });
</script>
</body>
</html>

頁面顯示:

怎么在vue中嵌套父子組件

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

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

vue
AI

盐源县| 什邡市| 扶风县| 浦东新区| 娄底市| 岫岩| 廉江市| 金溪县| 玉龙| 喀什市| 襄城县| 大化| 蛟河市| 英吉沙县| 石门县| 海门市| 陆良县| 彭泽县| 綦江县| 马边| 乌审旗| 封开县| 巧家县| 红原县| 遵义县| 遵义市| 梧州市| 名山县| 攀枝花市| 镇雄县| 安仁县| 永吉县| 河津市| 汉源县| 临清市| 临朐县| 江西省| 凤山市| 太康县| 互助| 霍城县|