mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-22 13:36:23 +08:00
17 lines
229 B
Vue
17 lines
229 B
Vue
<template>
|
|
<div>
|
|
这里是柱状图组件渲染
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const props = defineProps({
|
|
chart: {
|
|
type: Object,
|
|
require: true
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|