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 c6ee517 commit ad0380bCopy full SHA for ad0380b
example/pages/_slug.vue
@@ -4,6 +4,7 @@
4
:pageLinkOptions="pageLinkOptions"
5
fullPage
6
prism
7
+ katex
8
/>
9
</template>
10
@@ -18,7 +19,9 @@ export default {
18
19
};
20
},
21
async asyncData({ $notion, params, error }) {
- const pageTable = await $notion.getPageTable("10327f9074b7433aad577ccd0020e971");
22
+ const pageTable = await $notion.getPageTable(
23
+ "10327f9074b7433aad577ccd0020e971"
24
+ );
25
const page = pageTable.find(
26
(item) => item.published && item.slug === params.slug
27
);
0 commit comments