22 lines
377 B
Vue
22 lines
377 B
Vue
<template>
|
|
<the-navbar />
|
|
<div class="container with-nav">
|
|
<app-alert />
|
|
<div class="card">
|
|
<router-view />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import TheNavbar from '../components/TheNavbar.vue'
|
|
import AppAlert from '@/components/ui/AppAlert.vue';
|
|
export default {
|
|
components: {AppAlert, TheNavbar }
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|