Vue-kitchen-sink add component docgen description

This commit is contained in:
Michael Shilman 2020-01-17 22:47:54 +08:00
parent 3e52df6b12
commit 3bcaaeb769

View File

@ -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>