17 lines
201 B
Vue
17 lines
201 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>
|