发布时间:2023-05-11 13:30
第一种
##安装或者升级
npm install -g @vue/cli
##保证vue cli版本在4.5.0以上
vue --version或vue -V
##创建项目
vue create my-project
然后按照步骤:
1、Please pick a preset - 选择 Manually select features
2、Check the features needed for your project - 选择上 TypeScript ,特别注意点空格是选择,点回车是下一步
3、Choose a version of Vue.js that you want to start the project with - 选择 3.x (Preview)
4、Use class-style component syntax - 直接回车
5、Use Babel alongside TypeScript - 直接回车
6、Pick a linter / formatter config - 直接回车
7、Use history mode for router? - 直接回车
8、Pick a linter / formatter config - 直接回车
9、Pick additional lint features - 直接回车
10、Where do you prefer placing config for Babel, ESLint, etc.? - 直接回车
Save this as a preset for future projects? - 直接回车
第二种:使用vite创建
npm init vite-app <project-name>
cd <project-name>
npm install
npm run dev
如果新建的项目中组件使用有eslint报错。则点击vcode中上方的文件,选择首选项,选择设置,搜索eslint。找到Vetur,把右边的Validate vue-html in using eslint-plugin-vue勾选去掉。
1、vue2中的html模板中必须要有一对根标签,vue3组件的html模板中可以没有根标签。
1、setup(函数)
2021年第二届“大湾区杯”粤港澳金融建模竞赛B题解题思路和部分代码
【二、玩转vim(vi)编辑器】三大模式及命令介绍、如何通过配置文件.vimrc配置vim编辑器
Vue3 京东到家项目实战第一篇(首页及登录功能开发) 进阶式掌握vue3完整知识体系
Bigder:Linux centos下python2.7升级到python3.7.3
[vscode]代码规范ESLint + Prettier 在vue项目中的使用和冲突解决[完美解决]
第二章、Android UI 布局 - Android移动开发基础笔记
《SpringBoot系列十六》条件装配时ConfigurationCondition和Condition有什么区别?什么时候用ConfigurationCondition?