亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

怎么在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

铁岭县| 琼海市| 武川县| 南华县| 黄冈市| 南投县| 汉寿县| 来安县| 扎兰屯市| 玉屏| 东乡族自治县| 柏乡县| 昭苏县| 东方市| 津市市| 屏南县| 华蓥市| 灵璧县| 澄江县| 江都市| 盐津县| 锡林郭勒盟| 安多县| 丰镇市| 绵阳市| 麻江县| 澎湖县| 兰溪市| 北安市| 吴旗县| 财经| 兴海县| 天全县| 祁阳县| 盐边县| 都匀市| 仁怀市| 枝江市| 靖宇县| 镇远县| 太仆寺旗|