尽管你在模板中使用了 edit-modal(看起来像是一个 Vue 组件),但你并没有在脚本部分中导入和引用它。 其次,在 Vue3 的 中,如果你想引入一个组件,你应该直接在 script 标签中使用 ref 或者defineComponent,而不是像传统的 export default 那样去引入。 根据你的需求,你可能需要更改你的代码为以下形式:<templat...
"vite-plugin-vue-setup-extend": "^0.4.0", "vue-tsc": "^0.34.7" } } 2 changes: 1 addition & 1 deletion 2 src/views/Welcome.vue Original file line numberDiff line numberDiff line change @@ -5,7 +5,7 @@ </template> import { useLoginStore } from '@/store/modules/login...
使用setup语法糖注册组件: import AddPoints from './addPoints.vue' 代码简洁了很多,但发现AddPoints标红,虽然并不影响使用,但看着很不爽。查询了一番,发现是语法检测的Vetur插件不适用了,需禁用掉当前插件,安装Volar插件。