mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-12-25 09:41:50 +08:00
24 lines
409 B
Vue
24 lines
409 B
Vue
|
<template>
|
||
|
<div class="tdesign-wrapper">
|
||
|
<router-view />
|
||
|
<tdesign-setting />
|
||
|
</div>
|
||
|
</template>
|
||
|
<script lang="ts">
|
||
|
import { defineComponent } from 'vue';
|
||
|
import TdesignSetting from './setting.vue';
|
||
|
|
||
|
export default defineComponent({
|
||
|
components: {
|
||
|
TdesignSetting,
|
||
|
},
|
||
|
});
|
||
|
</script>
|
||
|
<style lang="less">
|
||
|
.tdesign-wrapper {
|
||
|
height: 100vh;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
</style>
|