vue3 vuetify において、apexcharts を表示したいのだが、以下のエラーが発生に対応した apexcharts vuejs

vue3 vuetify において、apexcharts を表示したいのだが、以下のエラーが発生に対応した

---------------------------------
★エラー
runtime-core.esm-bundler.js:41 [Vue warn]: Failed to resolve component: apexchart
If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement
at <CmpView1 onVnodeUnmounted=fn<onVnodeUnmounted> ref=Ref< undefined > >
at <RouterView>
at <VMain>
at <View>
at <VApp>
at <Default onVnodeUnmounted=fn<onVnodeUnmounted> ref=Ref< undefined > >
at <RouterView>
at <App>
---------------------------------

★原因
以下のファイルに設定を追加すると、エラーがでなくなった

./hoge-project/src/main.ts
---------------------------------
import VueApexCharts from "vue3-apexcharts"; ★これ

const app = createApp(App);
app.use(VueApexCharts); ★これ
---------------------------------