tdesign-vue-next-starter/src/layouts/blank.vue
2022-04-30 23:16:41 +08:00

13 lines
201 B
Vue

<template>
<div class="tdesign-wrapper">
<router-view />
</div>
</template>
<style lang="less" scoped>
.tdesign-wrapper {
height: 100vh;
display: flex;
flex-direction: column;
}
</style>