AnalysisSystemForRadionucli.../src/components/CustomMonthPicker/index.vue
2023-05-26 20:06:17 +08:00

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>