23 lines
383 B
Vue
23 lines
383 B
Vue
<template>
|
|
<Navbar />
|
|
<section class="section">
|
|
<Breadcrumb />
|
|
<RouterView />
|
|
</section>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Breadcrumb from './components/Breadcrumb.vue'
|
|
import Navbar from './components/Navbar.vue'
|
|
import { RouterView } from 'vue-router'
|
|
|
|
export default {
|
|
name: 'App',
|
|
components: {
|
|
Breadcrumb,
|
|
Navbar,
|
|
RouterView,
|
|
},
|
|
}
|
|
</script>
|