diff --git a/package.json b/package.json index 1cedb6f..4e7ca18 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@tiny-components/datepicker", - "version": "0.2.1", + "version": "0.3.0", "description": "Datepicker for Desktop and Mobile", "repository": { "type": "git", diff --git a/src/mixin.js b/src/mixin.js index bd7a461..e9fb6f5 100644 --- a/src/mixin.js +++ b/src/mixin.js @@ -66,6 +66,10 @@ export default { this.state.date = dayjs(data.date) }) + store.on('update-props', (data) => { + this.state.date = dayjs(this.props.date) + }) + this.createWeeksAndDays() },