17 lines
275 B
Vue
17 lines
275 B
Vue
<template>
|
|
<div class="root-layout diselect">
|
|
<page-transition />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import PageTransition from "@/components/PageTransition.vue";
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
.root-layout {
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
}
|
|
</style>
|