forked from DebaucheryLibrarian/traxxx
26 lines
355 B
Vue
26 lines
355 B
Vue
<template>
|
|
<div class="container">
|
|
<Header />
|
|
|
|
<div class="content">
|
|
<router-view />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Header from '../header/header.vue';
|
|
|
|
export default {
|
|
components: {
|
|
Header,
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.content-inner {
|
|
padding: 1rem;
|
|
}
|
|
</style>
|