You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
416 B
30 lines
416 B
<template>
|
|
<div id="app" class="app-container">
|
|
<NavBar />
|
|
<div class="content-container">
|
|
<router-view></router-view>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from './components/NavBar.vue'
|
|
|
|
export default {
|
|
components: {
|
|
NavBar
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.app-container {
|
|
display: flex;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.content-container {
|
|
flex: 1;
|
|
padding: 2rem;
|
|
}
|
|
</style>
|