Skip to content

Latest commit

 

History

History
 
 

learn-vue3

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Vue3学习

技术栈 vue3 + vite + TS

使用单文件组件需要安装(vue2使用的是 vue-template-compiler):

npm install -D @vue/compiler-sfc

使用 vite 创建项目

# npm 6.x
$ npm init vite@latest <project-name> --template vue

# npm 7+,需要加上额外的双短横线
$ npm init vite@latest <project-name> -- --template vue

$ cd <project-name>
$ npm install
$ npm run dev

项目配套工具

  • Vue Devtools

参考资料