File tree Expand file tree Collapse file tree 3 files changed +115
-516
lines changed Expand file tree Collapse file tree 3 files changed +115
-516
lines changed Original file line number Diff line number Diff line change 74
74
"typescript" : " ^4.4.4" ,
75
75
"vite" : " ^2.8.6" ,
76
76
"vite-plugin-dts" : " ^0.9.10" ,
77
- "vue-tsc" : " ^0.29.8 "
77
+ "vue-tsc" : " ^0.34.11 "
78
78
},
79
79
"peerDependencies" : {
80
80
"fragment-for-vue" : " ^1.0.1" ,
Original file line number Diff line number Diff line change @@ -7,7 +7,9 @@ const props = defineProps({ ...defineNotionProps })
7
7
// @ts-ignore
8
8
const { block, pass } = useNotionBlock (props )
9
9
10
- const referencePointerId = computed (() => block .value .value .format ?.transclusion_reference_pointer ?.id ?? " " )
10
+ const referencePointerId = computed (
11
+ () => (block .value .value .format ?.transclusion_reference_pointer ?.id as string ) ?? " "
12
+ )
11
13
</script >
12
14
13
15
<template >
@@ -16,7 +18,6 @@ const referencePointerId = computed(() => block.value.value.format?.transclusion
16
18
:key =" referencePointerId"
17
19
:level =" pass.level + 1"
18
20
:content-id =" referencePointerId"
19
- :content-index =" contentIndex"
20
21
></NotionRenderer >
21
22
</template >
22
23
You can’t perform that action at this time.
0 commit comments