This commit is contained in:
24
frontend/app/services/WindowDefinitions.js
Normal file
24
frontend/app/services/WindowDefinitions.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user