Skip to content

Files

Latest commit

8099cb4 · Mar 27, 2025

History

History

pages

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Mar 27, 2025
Nov 13, 2023
Aug 16, 2021
Mar 27, 2025

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'