1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-03-26 17:28:50 +00:00
bramw_baserow/web-frontend/modules/core/layouts/login.vue
2020-03-27 13:19:43 +00:00

19 lines
397 B
Vue

<template>
<div>
<Notifications></Notifications>
<div class="box-page-header"></div>
<div class="box-page">
<div class="box login-page login-page-login">
<nuxt />
</div>
</div>
</div>
</template>
<script>
import Notifications from '@baserow/modules/core/components/notifications/Notifications'
export default {
components: { Notifications }
}
</script>