mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
14 lines
177 B
Vue
14 lines
177 B
Vue
<script>
|
|
import BaseDate from './BaseDate';
|
|
|
|
export default {
|
|
extends: BaseDate,
|
|
props: {
|
|
config: {
|
|
type: Object,
|
|
default: () => ({})
|
|
}
|
|
}
|
|
};
|
|
</script>
|