30 lines
461 B
Vue
30 lines
461 B
Vue
<script setup>
|
|
import { NavigationModel } from "./components/Index.js";
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="app-container">
|
|
<NavigationModel />
|
|
<!-- <Nav /> -->
|
|
<div class="container">
|
|
<router-view />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
|
|
<style scoped lang="scss">
|
|
.app-container
|
|
{
|
|
width: 100%;
|
|
|
|
}
|
|
.container{
|
|
max-width: 1024px;
|
|
margin: 1rem auto;
|
|
padding: 0.5rem 1rem;
|
|
background: grey;
|
|
}
|
|
</style>
|