vite-plugin-vue-layouts icon indicating copy to clipboard operation
vite-plugin-vue-layouts copied to clipboard

Vue layout plugin for Vite

Results 35 vite-plugin-vue-layouts issues
Sort by recently updated
recently updated
newest added

When using v0.6.0, layouts auto-refresh via HMR. When using v0.7.0 layouts only update after running "vite dev" If I change any Tailwind classes such as "bg-yellow-500"; Tailwind does not update...

As far as I can tell, nested layouts don't seem to be possible. Is this something that could be possible in the future?

Can I use it like this - all routes ![image](https://user-images.githubusercontent.com/15319171/180642043-2988a286-8e2a-4aa1-99b1-95cb8cacbe50.png) - processed menu ![image](https://user-images.githubusercontent.com/15319171/180642135-c2110f96-c6a8-452c-99ad-348fc56c2a1b.png) https://github.com/zhuhaobam/vtdd/blob/main/src/layouts/components/sidebar/index.vue

Is there a way to have the child pages of a layout (aka the pages actually utilizing the layout) inherit the meta fields of the layout? Say for example I...

Hi, I want to implement unit test ini my project that contains this plugin. I got error like this. would you help me please ? Thankyou

Sometimes some pages need no layout ,like /login ``` +------------------+ | Login | | | +------------------+ ``` But now there is always default layout ``` +------------------+ | Default | |...

Most of the cases, we use layout for a group of route placed in same folders. so is it possible to work with them like this to avoid use custom...

Dir tree: ```bash src/pages ├── posts │ └── list │ ├── index.vue │ └── new │ └── index.vue ``` The currently generated routes is: ``` {path: '/posts'}, {path: '/posts/new'} ```...

If I'm not mistaken -- _and maybe I am as I'm just getting to the implementation of this_ -- this plugin uses the router as the primary source to determine...