mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +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),
|
||||
template: `
|
||||
<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>
|
||||
`,
|
||||
});
|
||||
|
@ -12,7 +12,9 @@ export const Template = (args, { argTypes }) => ({
|
||||
props: Object.keys(argTypes),
|
||||
template: `
|
||||
<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>
|
||||
`,
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user