We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f78fb20 commit 4ec3752Copy full SHA for 4ec3752
src/blocks/callout.vue
@@ -5,6 +5,7 @@
5
</div>
6
<div class="notion-callout-text">
7
<NotionTextRenderer :text="title" v-bind="pass" />
8
+ <slot />
9
10
11
</template>
src/components/block.vue
@@ -20,7 +20,9 @@
20
v-bind="pass"
21
/>
22
<NotionBookmark v-else-if="isType('bookmark')" v-bind="pass" />
23
- <NotionCallout v-else-if="isType('callout')" v-bind="pass" />
+ <NotionCallout v-else-if="isType('callout')" v-bind="pass">
24
25
+ </NotionCallout>
26
<NotionCode v-else-if="isType('code')" v-bind="pass" />
27
<NotionEquation v-else-if="isType('equation')" v-bind="pass" />
28
<NotionText v-else-if="isType('text')" v-bind="pass">
0 commit comments