mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-12-24 21:16:35 +08:00
15e8f72117
* 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>
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>
|