chore: upgrade deps

This commit is contained in:
YunYouJun
2022-06-15 05:35:20 +08:00
parent 34eb9b34e0
commit 33bf4b3a28
3 changed files with 453 additions and 529 deletions

View File

@@ -1,20 +0,0 @@
## File-based Routing
Routes will be auto-generated for Vue files in this dir with the same file structure.
Check out [`vite-plugin-pages`](https://github.com/hannoeru/vite-plugin-pages) for more details.
### Path Aliasing
`~/` is aliased to `./src/` folder.
For example, instead of having
```ts
import { isDark } from '../../../../composables'
```
now, you can use
```ts
import { isDark } from '~/composables'
```