15 lines
364 B
Vue
15 lines
364 B
Vue
<script setup>
|
|
import DefaultLayoutWithVerticalNav from './components/DefaultLayoutWithVerticalNav.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<DefaultLayoutWithVerticalNav>
|
|
<RouterView />
|
|
</DefaultLayoutWithVerticalNav>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
// As we are using `layouts` plugin we need its styles to be imported
|
|
@use "@layouts/styles/default-layout";
|
|
</style>
|