我按照官方示例撸了一下,代码如下: components: { 'my-component': () => import('./my-async-component') }发现会报出这个错:'import' and 'export' may only appear at the top level是还需要设置一些其他的东西吗?望大神指点~~
1 回答
哈士奇WWW
TA贡献1799条经验 获得超6个赞
<script>
const MyAsyncComponent = () => import('./my-async-component')
export default {
components: {
MyAsyncComponent
}
}
</script>
添加回答
举报
0/150
提交
取消