vue-material/src/components/mdButton/mdButton.vue
2016-11-02 21:30:15 -02:00

41 lines
900 B
Vue

<style lang="scss" src="./mdButton.scss"></style>
<script>
export default {
props: {
href: String,
type: String,
disabled: Boolean
},
render(createElement) {
let isDisabled = Boolean(this.disabled);
let hasLink = Boolean(this.href);
let tag = 'button';
let options = {
staticClass: 'md-button',
attrs: {
type: this.type || 'button',
disabled: isDisabled
},
directives: [{
name: 'md-ink-ripple',
value: isDisabled,
expression: 'disabled'
}],
on: {
click: () => {
this.$emit('click');
}
}
};
if (hasLink) {
tag = 'a';
options.attrs.href = this.href;
delete options.attrs.type;
}
return createElement(tag, options, this.$slots.default);
}
};
</script>