react-select2-wrapper
react-select2-wrapper copied to clipboard
Uncaught TypeError: $element.data is not a function
I am getting error when using below example, Example:
<Select2 multiple data={['bug', 'feature', 'documents', 'discussion']}
value={ ['feature'] }
options={ { placeholder: 'search by tags' } }
/>
Error:
Uncaught TypeError: $element.data is not a function
Can anyone help ?
I can't reproduce it.
Probably You are importing wrapper like that:
import Select2 from 'Select2'
change it to:
import Select2 from 'react-select2-wrapper'