关于section.vue的报错
来源:6-4 前端vue界面代码生成

慕仙3318693
2020-06-23
npm run serve-dev的时候报了这么一个错:
ERROR Failed to compile with 1 errors 18:34:21
error in ./src/views/admin/section.vue
Module Error (from ./node_modules/eslint-loader/index.js):
D:\IdeaProjects\course\admin\src\views\admin\section.vue
16:10 error Parsing error: invalid-first-character-of-tag-name vue/no-parsing-error
95:11 error Parsing error: invalid-first-character-of-tag-name vue/no-parsing-error
✖ 2 problems (2 errors, 0 warnings)
@ ./src/router.js 7:0-44 33:17-24
@ ./src/main.js
@ multi (webpack)-dev-server/client?http://192.168.0.105:8080&sockPath=/sockjs-node (webpack)/hot/dev-server.js ./src/main.js
大体我也知道报错的地方:在section.vue的第44行:
<tbody>
<tr v-for="section in sections">
<td>{{section.id}}</td>
<td>{{section.title}}</td>
<td>{{section.courseId}}</td>
<td>{{section.chapterId}}</td>
<td>{{section.video}}</td>
<td>{{section.time}}</td>
<td>{{section.charge}}</td>
<td>{{section.sort}}</td>
<td>{{section.createdAt}}</td>
<td>{{section.updatedAt}}</td>
<td>{{section.vod}}</td>
<td>
可是我找不到是什么问题,辛苦老师帮忙看下
2回答
-
invalid-first-character-of-tag-name vue/no-parsing-error
这个错应该是你哪里标签写得不对,比如写了<tr>没有写</tr>,或者写成<tr>>, <</tr>等
可以比对下代码变更,看所有改动的地方有没有可疑的。
另外你也可以用删代码调试法,比如删除某一段代码,如果不报错了,说明错误就在删除掉的那段代码里。然后再删除里面的一段,再看有没有报错,如果反复,直到定位到报错的地方
10 -
慕仙3318693
提问者
2020-06-23
又出现这种错误,前端真的是一脸懵逼啊,后端的错误我可以自己搞定
10
相似问题