tdesign-vue-next-starter/src/layouts/blank.vue
PY 15e8f72117 fix/UI/dark (#22)
* style: ui edit。

* feat: ui edit complete

* style: ui edit

* chore: update style import path

* feat: update import path

* chore: lint fix

* feat: add package.lok

* chore: update node version

* chore: update actions

* chore: remove lock file

* fix: node version update

* fix: revert preview actiion

* fix: tdesign-wrapper classname fix

* chore: complete type pkg

* chore: action complete

* feat: update redirect url

* feat: rename layouts to layout

* chore: revert layout to layouts

Co-authored-by: Uyarn <uyarnchen@gmail.com>
2021-12-12 01:04:13 +08:00

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>