33 lines
741 B
Vue
Raw Normal View History

2021-12-21 14:57:31 +08:00
<template>
<div class="go-chart">
<n-layout>
2022-01-05 18:04:41 +08:00
<HeaderPro>
<template #left>
<HeaderLeftBtn />
</template>
<template #ri-left>
<HeaderRightBtn />
</template>
</HeaderPro>
2021-12-21 14:57:31 +08:00
<n-layout-content>
2022-01-05 18:04:41 +08:00
2021-12-21 14:57:31 +08:00
</n-layout-content>
</n-layout>
</div>
</template>
<script setup lang="ts">
import { HeaderPro } from '@/layout/components/HeaderPro'
2022-01-05 18:04:41 +08:00
import { HeaderLeftBtn } from './layout/components/HeaderLeftBtn/index'
import { HeaderRightBtn } from './layout/components/HeaderRightBtn/index'
2021-12-21 14:57:31 +08:00
</script>
<style lang="scss" scoped>
$height: 100vh;
@include go('chart') {
height: $height;
overflow: hidden;
@include background-image('background-image');
}
</style>