當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


Vue.js components用法及代碼示例

注冊組件以供組件實例使用的對象。

類型

interface ComponentOptions {
  components?: { [key: string]: Component }
}

示例

import Foo from './Foo.vue'
import Bar from './Bar.vue'

export default {
  components: {
    // shorthand
    Foo,
    // register under a different name
    RenamedBar: Bar
  }
}

相關用法


注:本文由純淨天空篩選整理自vuejs.org大神的英文原創作品 components。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。