2
0
mirror of https://github.com/frappe/books.git synced 2025-01-28 01:28:28 +00:00

17 lines
235 B
Vue
Raw Normal View History

2018-07-04 22:22:18 +05:30
<script>
import BaseDate from './BaseDate';
2018-07-12 21:17:59 +05:30
2018-07-04 22:22:18 +05:30
export default {
extends: BaseDate,
props: {
config: {
type: Object,
default: () => ({
2018-07-04 22:22:18 +05:30
enableTime: true,
noCalendar: true
})
2018-07-04 22:22:18 +05:30
}
}
};
</script>