美文网首页
Failed to parse source for impor

Failed to parse source for impor

作者: 天渺工作室 | 来源:发表于2021-10-01 20:03 被阅读0次

Vue3 在采用 compositionAPI 时候,Vite编译报错:

[vite] Internal server error: Failed to parse source for import analysis because the content contains invalid JS syntax. If you are using JSX, make sure to name the file with the .jsx or .tsx extension.

我遇到的报错原因是因为

async setup(props) { // setup前面用async 异步关键字需注意阻塞风险

    await XXXX; // await后面 异步出现阻塞 导致报错 
}
image.gif

最好直接用Vue3 script-setup 语法糖去写 Vue3 script-setup语法

相关文章

网友评论

      本文标题:Failed to parse source for impor

      本文链接:https://www.haomeiwen.com/subject/krbunltx.html