mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-25 12:57:28 +00:00
18 lines
322 B
Vue
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>
|