error: cannot find module 'vue/compiler-sfc'
时间: 2023-04-28 18:01:34 浏览: 248
vue-deno-compiler:sfc vue组件的编译器
这个错误提示是因为在你的项目中缺少了vue的编译器模块,需要安装这个模块才能正常运行。你可以通过以下命令安装:
```
npm install vue-template-compiler --save-dev
```
安装完成后,再次运行项目即可。
阅读全文
vue-deno-compiler:sfc vue组件的编译器