2024-11-02 18:16:32 +00:00
|
|
|
<template>
|
2024-11-03 17:54:42 +00:00
|
|
|
<Navbar />
|
2024-11-03 07:37:04 +00:00
|
|
|
<section class="section">
|
2024-11-03 17:54:42 +00:00
|
|
|
<Breadcrumb />
|
|
|
|
<RouterView />
|
2024-11-03 07:37:04 +00:00
|
|
|
</section>
|
2024-11-02 18:16:32 +00:00
|
|
|
</template>
|
|
|
|
|
2024-11-02 18:41:13 +00:00
|
|
|
<script lang="ts">
|
2024-11-03 17:54:42 +00:00
|
|
|
import Breadcrumb from './components/Breadcrumb.vue'
|
|
|
|
import Navbar from './components/Navbar.vue'
|
2024-11-02 18:41:13 +00:00
|
|
|
import { RouterView } from 'vue-router'
|
2024-11-02 18:16:32 +00:00
|
|
|
|
2024-11-02 18:41:13 +00:00
|
|
|
export default {
|
2024-11-03 07:37:04 +00:00
|
|
|
name: 'App',
|
2024-11-02 18:41:13 +00:00
|
|
|
components: {
|
2024-11-03 17:54:42 +00:00
|
|
|
Breadcrumb,
|
|
|
|
Navbar,
|
2024-11-02 21:43:27 +00:00
|
|
|
RouterView,
|
|
|
|
},
|
2024-11-02 18:16:32 +00:00
|
|
|
}
|
2024-11-02 18:41:13 +00:00
|
|
|
</script>
|