Removed $listeners from button
parent
0dce8b5174
commit
6ea8264887
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<button :class="buttonClass" v-on="$listeners" type="button" v-ripple>
|
<button :class="buttonClass" type="button" v-ripple>
|
||||||
<slot>
|
<slot>
|
||||||
<span v-if="icon" :class="iconClass"></span>
|
<span v-if="icon" :class="iconClass"></span>
|
||||||
<span class="p-button-label">{{label||' '}}</span>
|
<span class="p-button-label">{{label||' '}}</span>
|
||||||
|
@ -29,6 +29,10 @@ export default {
|
||||||
badgeClass: {
|
badgeClass: {
|
||||||
type: String,
|
type: String,
|
||||||
default: null
|
default: null
|
||||||
|
},
|
||||||
|
disabled: {
|
||||||
|
type: Boolean,
|
||||||
|
default: null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
|
Loading…
Reference in New Issue