[plugin:vite:vue] [vue/compiler-sfc] Missing semicolon. (18:6) E:/project/2023/5/21 threejs解耦/xiefan/src/components/threejsDisplay/threeScene1/model/tag/oneLineTag.vue 24 | console.log('输出一堆'); 25 | } 26 | data() { 27 | return { 28 | name: 'Vue.js'
时间: 2023-08-17 19:05:04 浏览: 269
vite-plugin-vue-i18n:Vue I18n的快速插件
5星 · 资源好评率100%
这个错误提示是在你的 Vue 单文件组件中的第 18 行缺少了分号。在这个文件中,你可以在第 17 行和第 18 行之间添加一个分号来解决这个错误。例如:
```html
<template>
<div>
<!-- ... -->
</div>
</template>
<script>
export default {
// ...
methods: {
handleClick() {
console.log('输出一堆');
}
},
data() {
return {
name: 'Vue.js'
};
}
}; // 添加分号
</script>
<style>
/* ... */
</style>
```
阅读全文