vue3常见错误和解决方法
错误1:Compiled with problems: 编译问题C:\myel\src\views\HomeView.vue 错误出现文件3:1 error Mixed spaces and tabs no-mixed-spaces-and-tabs4:1 error Mixed spaces and tabs no-mixed-spaces-and-tabs第3行的第一个字符第4函的第一个字符M
错误1:
Compiled with problems: 编译问题
C:\myel\src\views\HomeView.vue 错误出现文件
3:1 error Mixed spaces and tabs no-mixed-spaces-and-tabs
4:1 error Mixed spaces and tabs no-mixed-spaces-and-tabs
第3行的第一个字符
第4函的第一个字符
Mixed spaces and tabs 错误原因:混合的空格与tab
no-mixed-spaces-and-tabs 错误规则: no-mixed-spaces-and-tabs 不准混空格与tab
2个问题(2个错误,0个警告)
解决办法:
格式化代码:
HBuilder 格式化:ctrl+K
vscode 格式化:ctrl+alt+F
错误2:
错误位置:src/views/user/LoginView.vue
错误原因:not found 找不到 '../assets/images/logo.png' 图片
解决办法:
在images文件中放入对应的图片
错误3:
Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'id')
没有捕捉到(承诺)类型错误:不能够与读取undefined的属性 (读取id)
解决办法:
查看数据是否含有'id',更改或定义一个'id'
错误4:
TypeError: Cannot read properties of undefined (reading 'summary')
不能够在undefined上面读取 summary属性
updated 更新页面(有数据了更新数据显示出来了)
解决办法:
出现 []下标 .属性 用v-if (第一次不渲染,等待更新后再渲染)
错误5:
出错的文件地址:C:\youmi\src\views\AboutView.vue
第16行17字符错误 reactive 没有定义:16:17 error 'reactive' is not defined no-undef
解决办法:
引入reactive :
import {reactive} from 'vue'
更多推荐
所有评论(0)