mirror of
https://gitee.com/dromara/go-view.git
synced 2025-05-15 04:08:58 +08:00
35 lines
867 B
Vue
35 lines
867 B
Vue
<template>
|
|
<div class="go-chart">
|
|
<n-layout>
|
|
<HeaderPro>
|
|
<template #left>
|
|
<HeaderLeftBtn />
|
|
</template>
|
|
<template #center>
|
|
<HeaderTitle />
|
|
</template>
|
|
<template #ri-left>
|
|
<HeaderRightBtn />
|
|
</template>
|
|
</HeaderPro>
|
|
<n-layout-content> </n-layout-content>
|
|
</n-layout>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { HeaderPro } from '@/layout/components/HeaderPro'
|
|
import { HeaderLeftBtn } from './layout/components/HeaderLeftBtn/index'
|
|
import { HeaderRightBtn } from './layout/components/HeaderRightBtn/index'
|
|
import { HeaderTitle } from './layout/components/HeaderTitle/index'
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
$height: 100vh;
|
|
@include go('chart') {
|
|
height: $height;
|
|
overflow: hidden;
|
|
@include background-image('background-image');
|
|
}
|
|
</style>
|