refactor: package chart-ui integrated into plugins (#4238)

* refactor: package chart-ui integrated into plugins

* fix: lint error
This commit is contained in:
Vben
2024-08-26 21:42:56 +08:00
committed by GitHub
parent fd7b3479b4
commit 8a0b1e0c72
37 changed files with 177 additions and 79 deletions

View File

@@ -0,0 +1,15 @@
<script setup lang="ts">
interface Props {
height?: string;
width?: string;
}
withDefaults(defineProps<Props>(), {
height: '300px',
width: '100%',
});
</script>
<template>
<div v-bind="$attrs" :style="{ height, width }"></div>
</template>