我想问你一个关于将简单示例从版本 2 更新到版本 3 的问题。
这个 svelte v2 异步组件加载示例有效(https://codesandbox.io/s/0ooo3z8nqp),但为 v3 编写的这个示例无效(https://codesandbox.io/s/615zv3xp33)。
有什么线索吗?谢谢!
更新: 我的问题是将以下代码从 Svelte V2 转换为 V3。
<script>
export default {
components: {},
data() {
return {
ChatBox: null
};
},
methods: {
async loadChatbox() {
const { default: ChatBox } = await import("./Chatbox.html");
this.set({ ChatBox });
}
}
};
</script>