docs: fix incorrect Vue v-slot usage

This commit is contained in:
andrewvasilchuk 2021-11-23 01:12:59 +02:00
parent 652739548d
commit 8aa18976f9
2 changed files with 6 additions and 2 deletions

View File

@ -17,7 +17,9 @@ const Template = (args, { argTypes }) => ({
props: Object.keys(argTypes), props: Object.keys(argTypes),
template: ` template: `
<page v-bind="$props"> <page v-bind="$props">
<footer v-if="footer" v-slot=footer v-html="footer"/> <template v-slot:footer>
<footer v-if="footer" v-html="footer"/>
</template>
</page> </page>
`, `,
}); });

View File

@ -12,7 +12,9 @@ export const Template = (args, { argTypes }) => ({
props: Object.keys(argTypes), props: Object.keys(argTypes),
template: ` template: `
<page v-bind="$props"> <page v-bind="$props">
<footer v-if="footer" v-slot=footer v-html="footer"/> <template v-slot:footer>
<footer v-if="footer" v-html="footer"/>
</template>
</page> </page>
`, `,
}); });