mirror of
https://gitee.com/dromara/go-view.git
synced 2026-04-23 00:00:12 +08:00
feat:完整布局封装
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
import ContentCharts from './index.vue'
|
||||
|
||||
export { ContentCharts }
|
||||
@@ -0,0 +1,20 @@
|
||||
<template>
|
||||
<ContentBox class="go-content-charts" title="图表" :depth="2">
|
||||
<n-scrollbar></n-scrollbar>
|
||||
</ContentBox>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { reactive } from 'vue'
|
||||
import { renderIcon } from '@/utils'
|
||||
import { icon } from '@/plugins'
|
||||
const {} = icon.ionicons5
|
||||
import { ContentBox } from '../ContentBox/index'
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
$wight: 200px;
|
||||
@include go(content-charts) {
|
||||
width: $wight;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user