2023-04-18 18:44:16 +02:00
..
2023-04-11 14:22:34 +02:00
2022-02-17 20:59:24 +08:00
2023-04-18 18:44:16 +02: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 '../../../../composables'

now, you can use

import { isDark } from '~/composables'