Browse Source

fix types

pull/2229/head
Bernd Storath 8 months ago
parent
commit
ab9d75757f
  1. 6
      src/app/components/Base/Chart.vue

6
src/app/components/Base/Chart.vue

@ -11,10 +11,10 @@
</template>
<script setup lang="ts">
import type { VueApexChartsComponent } from 'vue3-apexcharts';
import type { VueApexChartsComponentProps } from 'vue3-apexcharts';
defineProps<{
options: VueApexChartsComponent['options'];
series: VueApexChartsComponent['series'];
options: VueApexChartsComponentProps['options'];
series: VueApexChartsComponentProps['series'];
}>();
</script>

Loading…
Cancel
Save