Clarify description of args

Demo use of args outside props
This commit is contained in:
Steve Schwarz 2021-02-20 09:25:58 -06:00
parent a0a8d8799d
commit 7668f0253d
3 changed files with 45 additions and 5 deletions

View File

@ -0,0 +1,24 @@
```js
// Page.stories.js
import Page from './Page.vue';
export default {
title: 'Page',
};
const Template = (args, { argTypes }) => ({
components: { Page },
props: Object.keys(argTypes),
template: `
<page v-bind="$props">
<footer v-if="footer" v-slot=footer v-html="footer"/>
</page>
`,
});
export const CustomFooter = Template.bind({});
CustomFooter.args = {
footer: '<a href="https://storybook.js.org/">Built with Storybook</a>',
};
```

View File

@ -9,6 +9,8 @@ export default { title: 'Components/Button' };
const Template = (args, { argTypes }) => ({
components: { Button },
props: Object.keys(argTypes),
// Storybook provides all the args in a $props variable.
// Each arg is also available as their own name.
template: '<Button v-bind="$props" v-on="$props" />',
});

View File

@ -2,7 +2,7 @@
title: 'Args'
---
A story is a component with a set of arguments (props, slots, inputs, etc). “Args” are Storybooks mechanism for defining those arguments as a first class entity thats machine readable. This allows Storybook and its addons to live edit components. You _do not_ need to change your underlying component code to use args.
A story is a component with a set of arguments that define how the component is to be rendered. “Args” are Storybooks mechanism for defining those arguments in a single JavaScript object. Args can be used to dynamically change props, slots, styles, inputs, etc. This allows Storybook and its addons to live edit components. You _do not_ need to change your underlying component code to use args.
When an args value is changed, the component re-renders, allowing you to interact with components in Storybooks UI via addons that affect args.
@ -98,6 +98,20 @@ Args are useful when writing stories for composite components that are assembled
<!-- prettier-ignore-end -->
## Args can modify any aspect of your components
Args can be used in your story templates to configure your component just as you would in an application. Heres an example of how a `footer` arg can be used to populate a named slot in a Vue component.
<!-- prettier-ignore-start -->
<CodeSnippets
paths={[
'common/page-story-slots.js.mdx',
]}
/>
<!-- prettier-ignore-end -->
## Setting args through the URL
Initial args for the currently active story can be overruled by setting the `args` query parameter on the URL. Typically, you would use the Controls addon to handle this automatically, but you can also manually tweak the URL if desired. An example of Storybook URL query params could look like this:
@ -145,7 +159,7 @@ In Storybook 5 and before we passed the context as the first argument. If you
<!-- prettier-ignore-start -->
<CodeSnippets
<CodeSnippets
paths={[
'common/storybook-preview-parameters-old-format.js.mdx'
]}
@ -154,8 +168,8 @@ In Storybook 5 and before we passed the context as the first argument. If you
<!-- prettier-ignore-end -->
<div class="aside">
Note that `args` is still available as a key on the context.
Note that `args` is still available as a key on the context.
</div>
</details>