LeagueStats/client/src/App.vue

22 lines
418 B
Vue
Raw Normal View History

2019-03-30 22:55:48 +00:00
<template>
<div id="app" class="font-sans bg-blue-900 antialiased min-h-screen">
2019-04-10 20:05:52 +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>
import NotificationsContainer from '@/components/NotificationsContainer.vue'
import SVGContainer from '@/components/SVGContainer.vue'
2019-03-30 22:55:48 +00:00
export default {
components: {
NotificationsContainer,
SVGContainer
2019-03-30 22:55:48 +00:00
},
}
</script>