mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
55 lines
997 B
Vue
55 lines
997 B
Vue
<template>
|
|
<button type="button" :class="classes" @click="onClick" :style="style">{{ children }}</button>
|
|
</template>
|
|
|
|
<script>
|
|
import './button.css';
|
|
|
|
export default {
|
|
name: 'my-button',
|
|
|
|
props: {
|
|
children: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
primary: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
size: {
|
|
type: String,
|
|
default: 'medium',
|
|
validator: function (value) {
|
|
return ['small', 'medium', 'large'].indexOf(value) !== -1;
|
|
},
|
|
},
|
|
backgroundColor: {
|
|
type: String,
|
|
},
|
|
},
|
|
|
|
computed: {
|
|
classes() {
|
|
return {
|
|
'storybook-button': true,
|
|
'storybook-button--primary': this.primary,
|
|
'storybook-button--secondary': !this.primary,
|
|
[`storybook-button--${this.size}`]: true,
|
|
};
|
|
},
|
|
style() {
|
|
return {
|
|
backgroundColor: this.backgroundColor,
|
|
};
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
onClick() {
|
|
this.$emit('onClick');
|
|
},
|
|
},
|
|
};
|
|
</script>
|