File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ import NotionText from "@/blocks/text.vue"
17
17
import NotionTodo from " @/blocks/todo.vue"
18
18
import NotionToggle from " @/blocks/toggle.vue"
19
19
import NotionTableOfContents from " @/blocks/table-of-contents.vue"
20
+ import NotionSyncBlock from " @/blocks/sync-block.vue"
21
+ import NotionSyncPointerBlock from " @/blocks/sync-pointer-block.vue"
20
22
21
23
const NotionCode = defineAsyncComponent (() => import (" @/blocks/code.vue" ))
22
24
@@ -57,5 +59,7 @@ if (!availableType.includes(type.value)) console.warn(`${type.value.toUpperCase(
57
59
<NotionTable v-else-if =" isType('table')" v-bind =" pass" ><slot /></NotionTable >
58
60
<NotionTableRow v-else-if =" isType('table_row')" v-bind =" pass" />
59
61
<NotionTableOfContents v-else-if =" isType('table_of_contents')" v-bind =" pass" ></NotionTableOfContents >
62
+ <NotionSyncBlock v-else-if =" isType('transclusion_container')" ><slot /></NotionSyncBlock >
63
+ <NotionSyncPointerBlock v-else-if =" isType('transclusion_reference')" v-bind =" pass" ></NotionSyncPointerBlock >
60
64
<hr v-else-if =" isType('divider')" class =" notion-hr" />
61
65
</template >
You can’t perform that action at this time.
0 commit comments