ERROR Failed to compile with 1 error 17:02:29 error in ./src/components/MapPanel.vue?vue&type=template&id=4f5b6b90&scoped=true&ts=true Module parse failed: Unexpected token (6:27) File was processed with these loaders: * ./node_modules/vue-loader/dist/templateLoader.js * ./node_modules/vue-loader/dist/index.js You may need an additional loader to handle the result of these loaders. | const _hoisted_1 = { id: "mapContainer" } | > export function render(_ctx: any,_cache: any,$props: any,$setup: any,$data: any,$options: any) { | return (_openBlock(), _createElementBlock("div", _hoisted_1)) | }
时间: 2024-04-28 14:27:00 浏览: 201
解决vue安装less报错Failed to compile with 1 errors的问题
根据报错信息,看起来是在MapPanel.vue文件的模板中出现了语法错误。错误信息中的“Unexpected token”意味着Webpack在解析模板时遇到了一个不期望的标记,而“(6:27)”则表示该标记位于模板中的第6行第27个字符。
在这种情况下,您应该检查MapPanel.vue文件的模板代码是否有任何语法错误,特别是在第6行附近。如果您无法找到错误,请提供MapPanel.vue文件的模板代码,以便我可以更好地帮助您解决问题。
阅读全文