```js // YourComponent.stories.js import YourComponent from './YourComponent.vue'; //๐Ÿ‘‡ This default export determines where your story goes in the story list export default { title: 'YourComponent', component: YourComponent, }; //๐Ÿ‘‡ We create a โ€œtemplateโ€ of how args map to rendering const Template = (args) => ({ components: { YourComponent }, props: { args }, template: '', }); export const FirstStory = Template.bind({}); FirstStory.args = { /* ๐Ÿ‘‡ The args you need here will depend on your component */ }; ```