All checks were successful
Build and Deploy Nuxt / build (push) Successful in 49s
24 lines
457 B
JavaScript
24 lines
457 B
JavaScript
/*
|
|
Put here all dragonroll windows
|
|
*/
|
|
|
|
const defWindows = {
|
|
login: {
|
|
title: 'Login',
|
|
movable: false,
|
|
component: () => import('~/components/windows/LoginWindow.vue'),
|
|
},
|
|
register: {
|
|
title: 'Register',
|
|
movable: false,
|
|
component: () => import('~/components/windows/RegisterWindow.vue'),
|
|
},
|
|
example: {
|
|
title: 'Example',
|
|
component: () => import('~/components/windows/ExampleWindow.vue'),
|
|
}
|
|
}
|
|
|
|
export {
|
|
defWindows
|
|
} |