This commit is contained in:
GGJ
2023-12-26 14:15:05 +08:00
parent 5fc82743ef
commit 0c95c1183b
11 changed files with 555 additions and 10 deletions

View File

@@ -1,8 +1,21 @@
<template>
123123
<el-tabs v-model="activeName" type="border-card">
<el-tab-pane label="图形" name="1">
<Echart />
</el-tab-pane>
<el-tab-pane label="表格" name="2">Config</el-tab-pane>
</el-tabs>
</template>
<script lang='ts' setup>
<script setup lang="ts">
import { reactive, ref } from 'vue'
const activeName = ref('1')
import Echart from '@/views/dashboard/components/echart.vue'
</script>
<style lang="scss" scoped>
.bars_w {
width: 100%;
height: 500px;
}
</style>