Update simple knob example to have inner state and knobs passed with data()

This commit is contained in:
igor-dv 2018-11-12 18:39:06 +02:00
parent 7e5a192c0b
commit 3861875aee
2 changed files with 30 additions and 2 deletions

View File

@ -0,0 +1,23 @@
<template>
<div @click="i++">I am {{ name }} and I'm {{ age }} years old. Inner State Counter {{ i }}</div>
</template>
<script>
export default {
props: {
name: String,
age: Number,
},
data() {
return {
i: 40,
};
},
created() {
console.log('created');
},
destroyed() {
console.log('destroyed');
},
}
</script>

View File

@ -12,15 +12,20 @@ import {
button,
} from '@storybook/addon-knobs';
import SimpleKnobExample from './SimpleKnobExample.vue';
storiesOf('Addon|Knobs', module)
.addDecorator(withKnobs)
.add('Simple', () => {
const name = text('Name', 'John Doe');
const age = number('Age', 44);
const content = `I am ${name} and I'm ${age} years old.`;
return {
template: `<div>${content}</div>`,
components: { SimpleKnobExample },
template: '<simple-knob-example :name="name" :age="age" />',
data() {
return { name, age };
},
};
})
.add('All knobs', () => {