mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
defining typical use-case
This commit is contained in:
parent
d9e2de559c
commit
0ab99ea939
@ -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>
|
@ -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, {
|
||||
|
Loading…
x
Reference in New Issue
Block a user