Skip to content

Commit

Permalink
Fix circular reference
Browse files Browse the repository at this point in the history
  • Loading branch information
brachkow committed Nov 14, 2023
1 parent 8af3218 commit 47e13cb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion components/NotionCallout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,15 @@
import NotionPageIcon from './NotionPageIcon.vue';
import NotionRenderer from './NotionRenderer.vue';
import NotionTextRenderer from './NotionTextRenderer.vue';
import { defineAsyncComponent } from 'vue';
export default {
components: {
NotionPageIcon,
NotionTextRenderer,
NotionRenderer,
NotionRenderer: defineAsyncComponent(
() => import('./NotionRenderer.vue'),
),
},
extends: Blockable,
};
Expand Down

0 comments on commit 47e13cb

Please sign in to comment.