We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The component emits an on-change event that mimics the onChange hook from flatpickr.
on-change
If we change the config after the component has been mounted; None of the methods in config retains.
config
This is because of Object.assign does not handle this. Looking for a cheap and fast solution to get around this.
Object.assign
// changing config dynamically from your components this.$set(this.configs.basic, 'mode', 'range');
P.S: Will try to use lodash/cloneDeep and see if this can fix Object.assign behavior . P.S: Submit a PR flatpickr/flatpickr#1152
lodash/cloneDeep
The text was updated successfully, but these errors were encountered:
Emits all possible events
df4af8e
Fix #20, #37
Emit all possible events
92cb39a
* Enable deep watch on config * Fix #20, #37
ankurk91
No branches or pull requests
The component emits an
on-change
event that mimics the onChange hook from flatpickr.If we change the
config
after the component has been mounted; None of the methods inconfig
retains.This is because of
Object.assign
does not handle this. Looking for a cheap and fast solution to get around this.P.S: Will try to use
lodash/cloneDeep
and see if this can fix Object.assign behavior .P.S: Submit a PR flatpickr/flatpickr#1152
The text was updated successfully, but these errors were encountered: