【发布时间】:2019-08-01 12:18:23
【问题描述】:
在编译时是 Vue 的单文件组件,例如 App, QuotesList, QuoteItem(每个 SFC)嵌套对象,例如:
图解表示
App(Parent)
|
QuotesList (child of App)
|
QuoteItem (child of QuotesList)
JS 对象表示
var App = {
quotesList : {
quoteItem: {..}
}
}
【问题讨论】:
标签: vue.js vue-component