16 lines
200 B
Vue
16 lines
200 B
Vue
|
<template>
|
||
|
<main class="py-4">
|
||
|
<div class="container mb-8">
|
||
|
<router-view/>
|
||
|
</div>
|
||
|
</main>
|
||
|
|
||
|
|
||
|
</template>
|
||
|
|
||
|
|
||
|
<style scoped>
|
||
|
.mb-8 {
|
||
|
margin-bottom: 8rem;
|
||
|
}
|
||
|
</style>
|