import ListBottom from '@/components/ListBottom.vue'
const ListContainer = {
components: {
ListBottom,
},
}
export default ListContainer
没有被编译到 ListContainer.json 中
下面这种写法才被编译了
import ListBottom from '@/components/ListBottom.vue'
export default {
components: {
ListBottom,
},
}
0 个回复