Skip to content

Latest commit

History

History
20 lines (13 loc) 路 423 Bytes

README.md

File metadata and controls

20 lines (13 loc) 路 423 Bytes

File-based Routing

Routes will be auto-generated for Vue files in this dir with the same file structure. Check out unplugin-vue-router 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'