1
0
mirror of synced 2026-03-24 21:48:40 +08:00
Files
cook/src/pages
2022-04-22 03:56:32 +08:00
..
2022-04-13 22:41:22 +08:00
2022-04-22 03:56:32 +08:00
2022-04-17 04:20:33 +08:00
2022-04-13 22:41:22 +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 '../../../../composables'

now, you can use

import { isDark } from '~/composables'