```md
import { Canvas, Meta, Story } from '@storybook/addon-docs';
import Badge from './Badge.vue';
export const Template = (args, { argTypes }) => ({
props: Object.keys(argTypes),
components: { Badge },
template: '',
});
# Badge
Let's define a story for our `Badge` component:
{Template.bind({})}
We can drop it in a `Canvas` to get a code snippet:
We can even preview multiple Stories in a block. This
gets rendered as a group but defines individual stories
with unique URLs, which is great for review and testing.
```