Skip to content

Latest commit

 

History

History
 
 

pages

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

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 ./ folder.

src/ is aliased to ./src folder.

store/ is aliased to ./store folder.

pages/ is aliased to ./pages folder.

For example, instead of having

import { isDark } from '../../../../logic'

now, you can use

import { isDark } from 'src/logic'