2022-03-24 04:15:14 +00:00
|
|
|
<template>
|
|
|
|
|
<section class="app-main">
|
|
|
|
|
<router-view v-slot="{ Component }">
|
|
|
|
|
<component :is="Component" />
|
|
|
|
|
</router-view>
|
|
|
|
|
</section>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.app-main{
|
|
|
|
|
padding: 20px;
|
2022-03-28 10:32:20 +00:00
|
|
|
padding-top: 70px;
|
2022-03-24 04:15:14 +00:00
|
|
|
}
|
|
|
|
|
</style>
|