Files
dragonroll/frontend/app/services/WindowDefinitions.js
Aran Roig b69e571202
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 49s
Enough for today
2026-04-26 00:52:59 +02:00

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
}