mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-06-14 18:25:14 -04:00
9 lines
235 B
TypeScript
9 lines
235 B
TypeScript
import BaseLayout from './base.layout.vue';
|
|
import NavbarLayout from './navbar.layout.vue';
|
|
import ToolLayout from './tool.layout.vue';
|
|
|
|
export const layouts = {
|
|
base: BaseLayout,
|
|
toolLayout: ToolLayout,
|
|
navbar: NavbarLayout,
|
|
};
|