VueApexCharts.client.vue 232 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 <script setup lang="ts"> // eslint-disable-next-line no-restricted-imports import VueApexCharts from 'vue3-apexcharts' defineOptions({ inheritAttrs: false, }) </script> <template> <VueApexCharts v-bind="$attrs" /> </template>