mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:11:13 +08:00
58 lines
1.0 KiB
Plaintext
58 lines
1.0 KiB
Plaintext
```html
|
|
<!-- Button.vue -->
|
|
|
|
<template>
|
|
<!-- the component markup implementation -->
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'button',
|
|
props: {
|
|
/**
|
|
* Button contents
|
|
*/
|
|
label: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
/**
|
|
* Is this the principal call to action on the page?
|
|
*/
|
|
primary: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
/**
|
|
* How large should the button be?
|
|
*/
|
|
size: {
|
|
type: String,
|
|
default: 'medium',
|
|
validator: function (value) {
|
|
return ['small', 'medium', 'large'].indexOf(value) !== -1;
|
|
},
|
|
},
|
|
/**
|
|
* What background color to use
|
|
*/
|
|
backgroundColor: {
|
|
type: String,
|
|
},
|
|
},
|
|
emits: ['click'],
|
|
setup(props, { emit }) {
|
|
props = reactive(props);
|
|
return {
|
|
/**
|
|
* Optional click handler
|
|
*/
|
|
onClick() {
|
|
emit('click');
|
|
},
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
```
|