vitesse/src/pages
2021-07-15 23:39:57 +08:00
..
hi chore: update deps 2021-07-02 08:27:32 +08:00
[...all].vue feat: support layouts (#56) 2021-02-12 12:55:19 +08:00
about.md chore: update deps 2021-07-15 23:39:57 +08:00
index.vue feat: use vue-global-api 2021-07-14 00:51:31 +08:00
README.md feat: rename logics to logic 2021-03-31 13:59:01 +08:00

File-based Routing

Routes will be 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 '../../../../logic'

now, you can use

import { isDark } from '~/logic'