storybook/docs/snippets/vue/page-story-slots.mdx-3.mdx.mdx
2021-11-09 01:41:54 +00:00

31 lines
581 B
Plaintext

```md
<!-- Page.stories.mdx -->
import { Meta, Story } from '@storybook/addon-docs';
import Page from './Page.vue';
<Meta title="Page" component={Page} />
export const Template = (args) => ({
components: { Page },
setup() {
return { args };
},
template: `
<page v-bind="args">
<template v-slot:footer>
<footer v-if="args.footer" v-html="args.footer" />
</template>
</page>
`,
});
<Story
name="CustomFooter"
args={{
footer: '<a href="https://storybook.js.org/">Built with Storybook</a>',
}}>
{Template.bind({})}
</Story>
```