We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d32f1f commit e101bdeCopy full SHA for e101bde
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
@@ -7,7 +7,9 @@
<NotionHeader v-else-if="isType(['header', 'sub_header', 'sub_sub_header'])" v-bind="pass" />
<NotionBookmark v-else-if="isType('bookmark')" v-bind="pass" />
- <NotionCallout v-else-if="isType('callout')" v-bind="pass" />
+ <NotionCallout v-else-if="isType('callout')" v-bind="pass">
12
+ </NotionCallout>
13
<NotionCode v-else-if="isType('code')" v-bind="pass" />
14
<NotionEquation v-else-if="isType('equation')" v-bind="pass" />
15
<NotionText v-else-if="isType('text')" v-bind="pass" />
0 commit comments