26 lines
479 B
Vue
26 lines
479 B
Vue
<template>
|
|
<a-month-picker v-bind="$attrs" v-model="innerValue">
|
|
<img src="@/assets/images/global/calendar.png" slot="suffixIcon" alt="" srcset="" />
|
|
</a-month-picker>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: {
|
|
value: {
|
|
type: [String, Object]
|
|
}
|
|
},
|
|
computed: {
|
|
innerValue: {
|
|
get() {
|
|
return this.value
|
|
},
|
|
set(val) {
|
|
this.$emit('input', val)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style lang=""></style>
|