12 lines
248 B
Vue
12 lines
248 B
Vue
<template>
|
|
<normal-layout>
|
|
<template #content>
|
|
<router-view></router-view>
|
|
</template>
|
|
</normal-layout>
|
|
</template>
|
|
<script setup>
|
|
import NormalLayout from './layouts/NormalLayout.vue';
|
|
</script>
|
|
<style></style>
|