<!-- 创建项目 -->
## 创建项目(yarn)
yarn global add @vue/cli
vue create my-project
# OR
vue ui
## 按需要选
>(*) TypeScript
 ( ) Progressive Web App (PWA) Support
 (*) Router
 (*) Vuex
 (*) CSS Pre-processors
 (*) Linter / Formatter
 (*) Unit Testing
 ( ) E2E Testing
## 选择一直可以Y除了以下情况
 选择css预处理,这里我选择stylus
 选择ESLint + Prettier
 选择语法检查方式,这里我选择保存就检测 Lint on sava
 选择单元测试 Jest
In dedicated config files // 独立文件放置
## 安装sass
yarn add node-sass -d  
yarn add sass-loader -d

 

相关文章:

  • 2021-12-15
  • 2021-12-04
  • 2022-12-23
  • 2022-12-23
  • 2021-04-30
猜你喜欢
  • 2022-12-23
  • 2021-12-07
  • 2021-12-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-18
相关资源
相似解决方案