mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:11:23 +08:00
Vue-kitchen-sink add component docgen description
This commit is contained in:
parent
3e52df6b12
commit
3bcaaeb769
@ -1,23 +1,26 @@
|
||||
<script>
|
||||
/**
|
||||
* InfoButton component description
|
||||
*/
|
||||
export default {
|
||||
props: {
|
||||
/**
|
||||
* Whether to disable button
|
||||
*/
|
||||
disabled: {
|
||||
type: Boolean
|
||||
type: Boolean,
|
||||
},
|
||||
/**
|
||||
* Button type
|
||||
*/
|
||||
type: {
|
||||
type: String,
|
||||
default: 'normal'
|
||||
default: 'normal',
|
||||
},
|
||||
label: {
|
||||
type: String,
|
||||
required: true
|
||||
}
|
||||
required: true,
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
click(ev) {
|
||||
@ -25,10 +28,10 @@ export default {
|
||||
* Passthrough click event
|
||||
* @type {Event}
|
||||
*/
|
||||
this.$emit('click', ev)
|
||||
}
|
||||
}
|
||||
}
|
||||
this.$emit('click', ev);
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<template>
|
||||
@ -64,4 +67,4 @@ export default {
|
||||
background-color: #eee;
|
||||
color: #777;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
Loading…
x
Reference in New Issue
Block a user