Open RaptorII opened 1 year ago
the code from the documentation returns an error:
code: _const setFullDateBtn = document.querySelector('#setFullDateBtn');
const datepicker = MCDatepicker.create({ el: '#example' });
setFullDateBtn.onclick = () => { datepicker.setFullDate(new Date(2021, 1, 1)); };_
return error: Uncaught TypeError: Cannot read properties of undefined (reading 'setFullDate') at setFullDateBtn.onclick
Hi there! Make sure you have imported the resources correctly. It says the module is undefined which means it wasn't imported properly.
the code from the documentation returns an error:
code: _const setFullDateBtn = document.querySelector('#setFullDateBtn');
const datepicker = MCDatepicker.create({ el: '#example' });
setFullDateBtn.onclick = () => { datepicker.setFullDate(new Date(2021, 1, 1)); };_
return error: Uncaught TypeError: Cannot read properties of undefined (reading 'setFullDate') at setFullDateBtn.onclick