import { use } from '../utils'; const [sfc, bem] = use('key'); export default sfc({ props: { type: String, theme: Array, text: [String, Number] }, data() { return { active: false }; }, computed: { className() { const classNames = this.theme.slice(0); if (this.active) { classNames.push('active'); } if (this.type) { classNames.push(this.type); } return bem(classNames); } }, methods: { onFocus() { this.active = true; }, onBlur(event) { this.active = false; }, onClick() { this.$emit('press', this.text, this.type); } }, render(h) { const { onBlur } = this; return ( {this.slots('default') || this.text} ); } });