echarts-ui.vue 251 B

123456789101112131415
  1. <script setup lang="ts">
  2. interface Props {
  3. height?: string;
  4. width?: string;
  5. }
  6. withDefaults(defineProps<Props>(), {
  7. height: '300px',
  8. width: '100%',
  9. });
  10. </script>
  11. <template>
  12. <div v-bind="$attrs" :style="{ height, width }"></div>
  13. </template>