app-extension-qdatetimepicker
app-extension-qdatetimepicker copied to clipboard
Error encountered
[Vue warn]: Error in callback for immediate watcher "defaultStandard": "TypeError: this.value.indexOf is not a function"
found in
---> <QDatetimePicker> <QForm> <QCardSection> <QCard> <QPage> <Game> <QPageContainer> <QLayout> <MainLayout> at src/layouts/MainLayout.vue <App> at src/App.vue <Root> warn @ vue.runtime.esm.js?5593:619
vue.runtime.esm.js?5593:619 [Vue warn]: Error in callback for immediate watcher "language": "TypeError: proporsal.split is not a function"
found in
---> <QDatetimePicker> <QForm> <QCardSection> <QCard> <QPage>
do u can share the steps to reproduce that error?
It's standard usage:
quasar.extensions.json
{ "qdatetimepicker": {} }
no imports in my vue page.
the component works. the warnings are non-critical to console. spelling errors in errors may mean something.
I think you are using Date on model and should be ISO date string, like:
data () { return { date: '2018-11-02', time: '15:46', datetime: '2018-11-02T15:46' } }