LeagueStats/client/src/App.vue
2019-09-14 23:19:10 +02:00

18 lines
322 B
Vue

<template>
<div id="app" class="font-sans bg-blue-900 antialiased min-h-screen">
<NotificationsContainer />
<router-view />
</div>
</template>
<script>
import NotificationsContainer from '@/components/NotificationsContainer.vue'
export default {
components: {
NotificationsContainer
},
}
</script>