## 安裝`Vue3`
```shell
# 最新穩定版
$ npm install vue@next
# 安裝單文件組件
$ npm install -D @vue/compiler-sfc
# 安裝命令行工具 (CLI)
$ yarn global add @vue/cli
```
## 使用`vite`創建工程
```shell
$ yarn create vite xinchen-manage --template vue
$ cd xinchen-manage
$ yarn
$ yarn dev
```