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
I tried to use NimblePicker component and have following error:
[Vue warn]: Error in created hook: "TypeError: this.mutableData is undefined" found in ---> at src/components/picker/nimblePicker.vue
Here is parts of my code:
<template> <div> <nimble-picker v-show="pickerOpened" :data="data" title="Pick your emoji..." emoji="point_up" set="messenger" @select="addEmoji" /> ... </div> </template> import data from 'emoji-mart-vue/data/messenger.json' import {NimblePicker} from 'emoji-mart-vue' ... data () { return { data: data, text: '', pickerOpened: false, } }, ...
With vue devtools I can see that data is passed to NimblePicker correctly, but mutableData is undefined for some reason: https://screencast.com/t/eeODT2ktb3O https://screencast.com/t/ZfkU6kH9w
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I tried to use NimblePicker component and have following error:
[Vue warn]: Error in created hook: "TypeError: this.mutableData is undefined"
found in
---> at src/components/picker/nimblePicker.vue
Here is parts of my code:
With vue devtools I can see that data is passed to NimblePicker correctly, but mutableData is undefined for some reason: https://screencast.com/t/eeODT2ktb3O https://screencast.com/t/ZfkU6kH9w
The text was updated successfully, but these errors were encountered: