Vue component wrapping Pickr
npm install @willsoto/vue-pickr pickr-widget
yarn add @willsoto/vue-pickr pickr-widget
<div>
<vue-pickr @pickr="pickr" :options="options"></vue-pickr>
</div>
import VuePickr from '@willsoto/vue-pickr';
export default {
name: 'my-component',
components: {
VuePickr
},
data() {
return {
// gives you access to the pickr instance
// https://github.com/Simonwep/pickr#methods
pickr: null,
// https://github.com/Simonwep/pickr#optional-options
options: {}
};
}
};