mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-03-26 17:28:50 +00:00
19 lines
397 B
Vue
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>
|