AnalysisSystemForRadionucli.../src/components/CustomDatePicker/index.vue
2023-05-26 15:07:08 +08:00

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>