【vue创建项目】创建一个ts项目包含sass

<!-- 创建项目 -->
## 创建项目(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