2016-07-13 05:00:31 +00:00
|
|
|
<style lang="scss" src="./mdButton.scss"></style>
|
2016-06-21 06:54:17 +00:00
|
|
|
|
2016-07-15 00:06:29 +00:00
|
|
|
<script>
|
|
|
|
|
export default {
|
2016-09-08 05:15:03 +00:00
|
|
|
props: {
|
|
|
|
|
href: String,
|
|
|
|
|
type: String,
|
|
|
|
|
disabled: Boolean
|
|
|
|
|
},
|
2016-09-05 05:15:28 +00:00
|
|
|
render(createElement) {
|
|
|
|
|
let isDisabled = Boolean(this.disabled);
|
|
|
|
|
let hasLink = Boolean(this.href);
|
|
|
|
|
let tag = 'button';
|
|
|
|
|
let options = {
|
|
|
|
|
staticClass: 'md-button',
|
|
|
|
|
attrs: {
|
2016-11-02 23:30:15 +00:00
|
|
|
type: this.type || 'button',
|
2016-09-05 05:15:28 +00:00
|
|
|
disabled: isDisabled
|
|
|
|
|
},
|
|
|
|
|
on: {
|
2016-11-23 18:52:24 +00:00
|
|
|
click: ($event) => {
|
|
|
|
|
this.$emit('click', $event);
|
2016-09-09 16:46:29 +00:00
|
|
|
}
|
2016-09-05 05:15:28 +00:00
|
|
|
}
|
|
|
|
|
};
|
2016-10-25 07:09:44 +00:00
|
|
|
let ripple = createElement('md-ink-ripple', {
|
|
|
|
|
attrs: {
|
|
|
|
|
mdDisabled: isDisabled
|
|
|
|
|
}
|
|
|
|
|
});
|
2016-09-05 05:15:28 +00:00
|
|
|
|
|
|
|
|
if (hasLink) {
|
|
|
|
|
tag = 'a';
|
|
|
|
|
options.attrs.href = this.href;
|
|
|
|
|
delete options.attrs.type;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-25 07:09:44 +00:00
|
|
|
return createElement(tag, options, [...this.$slots.default, ripple]);
|
2016-07-15 00:06:29 +00:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|