20 lines
342 B
Vue
20 lines
342 B
Vue
<template>
|
|
<a-date-picker v-bind="$attrs">
|
|
<img src="@/assets/images/global/calendar.png" slot="suffixIcon" alt="" srcset="">
|
|
</a-date-picker>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: {
|
|
value: {
|
|
type: [String, Object]
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="">
|
|
|
|
</style> |