英文:
Package not found - Problems with a project in Vue3
问题
我正在学习Vue3,但在尝试创建项目时遇到一些问题。
我正在使用Windows 10以及更新版本的node和vue。
这是我的步骤。
我尝试更新node和vue,清除缓存文件,重新启动计算机和服务器。
英文:
I'm learning Vue3, but I'm with some problems when I try to create the project.
I'm using Windows 10 and the more update versions of node and vue.
This is my steps.
I'm try update node and vue, clear the cash files, restart pc and server.
答案1
得分: 0
创建Vue项目使用webpack现在已经有些过时。现在大多数情况下都使用vite
,它提供了更快的开发体验。
npm init vue@latest
这是一个交互式命令,用于创建一个带有最新功能的Vuejs项目。
英文:
Creating Vue project with webpack is a bit out of date as per now. It mostly come with vite
now which gives more faster developing experience.
npm init vue@latest
This is an interactive command to create a new project with vuejs with the latest features.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论