mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 02:51:09 +08:00
parent
1e7ec0564b
commit
28e72cb6b1
@ -1,6 +1,14 @@
|
||||
export const vueHandler = (channel, knobStore) => getStory => context => ({
|
||||
data() {
|
||||
return {
|
||||
context,
|
||||
getStory,
|
||||
story: getStory(context),
|
||||
};
|
||||
},
|
||||
|
||||
render(h) {
|
||||
return h(getStory(context));
|
||||
return h(this.story);
|
||||
},
|
||||
|
||||
methods: {
|
||||
@ -10,6 +18,7 @@ export const vueHandler = (channel, knobStore) => getStory => context => ({
|
||||
const knobOptions = knobStore.get(name);
|
||||
|
||||
knobOptions.value = value;
|
||||
this.story = this.getStory(this.context);
|
||||
this.$forceUpdate();
|
||||
},
|
||||
|
||||
@ -21,6 +30,7 @@ export const vueHandler = (channel, knobStore) => getStory => context => ({
|
||||
onKnobReset() {
|
||||
knobStore.reset();
|
||||
this.setPaneKnobs(false);
|
||||
this.story = this.getStory(this.context);
|
||||
this.$forceUpdate();
|
||||
},
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user