mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-14 09:08:32 +00:00
19 lines
377 B
Vue
19 lines
377 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 '@/components/notifications/Notifications'
|
|
|
|
export default {
|
|
components: { Notifications }
|
|
}
|
|
</script>
|