admin-vben/packages/effects/plugins/src/echarts/echarts-ui.vue

16 lines
251 B
Vue
Raw Normal View History

2024-06-23 15:18:55 +00:00
<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>