Files
EasyFlow/easyflow-ui-admin/packages/effects/plugins/src/echarts/echarts-ui.vue
2026-02-22 18:56:10 +08:00

16 lines
251 B
Vue

<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>