2022-07-27 15:16:53 +08:00

19 lines
316 B
Vue

<template>
<div>your component</div>
</template>
<script setup lang="ts">
import { PropType } from 'vue'
import { CreateComponentType } from '@/packages/index.d'
const props = defineProps({
chartConfig: {
type: Object as PropType<CreateComponentType>,
required: true
}
})
</script>
<style></style>