Files
dragonroll/frontend/app/services/WindowDefinitions.js
Aran Roig 475887420c
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 39s
Added icon change
2026-04-26 21:12:08 +02:00

28 lines
605 B
JavaScript

/*
Put here all dragonroll windows
*/
const defWindows = {
login: {
title: 'windows.login',
movable: false,
component: () => import('~/components/windows/LoginWindow.vue'),
},
register: {
title: 'windows.register',
movable: false,
component: () => import('~/components/windows/RegisterWindow.vue'),
},
main_menu: {
title: 'windows.main-menu',
component: () => import('~/components/windows/MainMenuWindow.vue'),
},
example: {
title: 'windows.example',
component: () => import('~/components/windows/ExampleWindow.vue'),
}
}
export {
defWindows
}