storybook-code-view
v1.0.0
Published
Storybook addon to view your component source.
Downloads
71
Maintainers
Readme
Storybook Addon: Component source
Storybook Addon Component source allows you to view your component template in storybook addon panel.
Framework Support : Vue, React(Coming soon...)
Getting Started
yarn add -D component-source
Then create a file called addons.js
in your Storybook config.
Add following content to it:
// register the notes addon as a tab
import 'component-source/register';
Now, you can use the source
parameter to add a note to each story.
Vue
import { storiesOf } from '@storybook/vue';
import MyButton from '../src/components/MyButton.vue';
storiesOf('MyButton', module).add(
'with some emoji',
() => ({
components: { MyButton },
template: '<my-button>😀 😎 👍 💯</my-button>',
}),
{
source: {
// Note: Path should be start from /src/ and must be end with file extension
publicPath:'/src/components/MyButton.vue'
},
}
);