defining typical use-case

This commit is contained in:
Julien Barbay 2018-11-14 19:17:12 +09:00
parent d9e2de559c
commit 0ab99ea939
2 changed files with 20 additions and 36 deletions

View File

@ -1,23 +0,0 @@
<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,22 +12,29 @@ 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);
return {
components: { SimpleKnobExample },
template: '<simple-knob-example :name="name" :age="age" />',
data() {
return { name, age };
.add('Simple', () => ({
props: {
name: {
type: String,
default: text('Name', 'John Doe'),
},
};
})
},
template: `<div @click="age++">I am {{ name }} and I'm {{ age }} years old.</div>`,
data() {
return { age: 40 };
},
created() {
console.log('created');
},
destroyed() {
console.log('destroyed');
},
}))
.add('All knobs', () => {
const name = text('Name', 'Jane');
const stock = number('Stock', 20, {