/* 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 }