We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Here is my story:
import { storiesOf } from '@storybook/vue'; import { ComponentOptions } from 'vue'; import SomeComponent from './SomeComponent.vue'; import { specs } from 'storybook-addon-specifications'; import test from './some-component.spec'; storiesOf('Form|Project', module) .add( 'Add Form', (() => { const story: ComponentOptions<any> = { components: { SomeComponent, }, data() { return { form: { name: '', description: '', }, }; }, template: ` <div class="default-view"> <h3>form: {{ form }}</h3> <hr/> <SomeComponent v-model="form" /> </div> `, }; specs(() => test); return story; }), );
if I remove specs(() => test);, HMR works as except. if don't, HMR only works on style update.
specs(() => test);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here is my story:
if I remove
specs(() => test);
, HMR works as except.if don't, HMR only works on style update.
The text was updated successfully, but these errors were encountered: