LeagueStats/client/src/App.vue

19 lines
320 B
Vue
Raw Normal View History

2019-03-30 22:55:48 +00:00
<template>
<div id="app" class="font-sans bg-gray-200 antialiased min-h-screen">
2019-04-10 20:05:52 +00:00
<NotificationsContainer/>
2019-03-30 22:55:48 +00:00
<router-view/>
</div>
</template>
<script>
import NotificationsContainer from '@/components/NotificationsContainer.vue'
2019-03-30 22:55:48 +00:00
export default {
components: {
NotificationsContainer
2019-03-30 22:55:48 +00:00
},
}
</script>