[plugin:vite:vue] [vue/compiler-sfc] Missing semicolon. (6:11) E:/project/2023/5/21 threejs解耦/xiefan/src/components/threejsDisplay/threeScene1/render/load.vue 4 | 5 | const text = ['.', '..', '...'] 6 | let textSrc:any = ref('.') 7 | 8 | const dianAnimal = (str) = {
时间: 2024-01-14 14:03:26 浏览: 391
vite-plugin-vue-i18n:Vue I18n的快速插件
5星 · 资源好评率100%
这个错误提示是在使用Vue单文件组件(SFC)时,编译器检测到缺少分号。根据您提供的信息,错误出现在 `load.vue` 文件的第6行。可能是您在该行代码末尾缺少了分号。
您可以尝试在该行代码的末尾添加分号,像这样:
```
const text = ['.', '..', '...'];
```
另外,您在第8行代码中的箭头函数定义也存在语法错误,应该改成这样:
```
const dianAnimal = (str) => {
// 函数体
}
```
希望能帮到您解决问题。
阅读全文