mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
docs: fix incorrect Vue v-slot usage
This commit is contained in:
parent
652739548d
commit
8aa18976f9
@ -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>
|
||||||
`,
|
`,
|
||||||
});
|
});
|
||||||
|
@ -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>
|
||||||
`,
|
`,
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user