2019-03-30 22:55:48 +00:00
|
|
|
<template>
|
2019-09-14 21:19:10 +00:00
|
|
|
<div id="app" class="font-sans bg-blue-900 antialiased min-h-screen">
|
2019-04-10 20:05:52 +00:00
|
|
|
|
2019-11-03 17:49:58 +00:00
|
|
|
<SVGContainer />
|
2019-08-23 14:48:16 +00:00
|
|
|
<NotificationsContainer />
|
|
|
|
|
<router-view />
|
2019-03-30 22:55:48 +00:00
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2019-08-22 22:50:00 +00:00
|
|
|
import NotificationsContainer from '@/components/NotificationsContainer.vue'
|
2019-11-03 17:49:58 +00:00
|
|
|
import SVGContainer from '@/components/SVGContainer.vue'
|
2019-08-22 22:50:00 +00:00
|
|
|
|
2019-03-30 22:55:48 +00:00
|
|
|
export default {
|
2019-08-22 22:50:00 +00:00
|
|
|
components: {
|
2019-11-03 17:49:58 +00:00
|
|
|
NotificationsContainer,
|
|
|
|
|
SVGContainer
|
2019-03-30 22:55:48 +00:00
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
</script>
|