Johnson Chu c6c6722d38
feat: enable volar ts plugin (#63)
* chore: enabled ts plugin

* fix: require -> required
2021-02-14 14:26:59 +08:00
..
2021-02-14 14:26:59 +08:00
2021-02-12 12:55:19 +08:00
2021-02-11 23:17:40 +08:00
2021-02-12 13:00:32 +08:00

File-based Routing

Routes will auto-generated for Vue files in this dir with the same file structure. Check out vite-plugin-pages for more details.

Path Aliasing

~/ is aliased to ./src/ folder.

For example, instead of having

import { isDark } from '../../../../logics'

now you can use

import { isDark } from '~/logics'