index.vue:62 Couldn't initiate Virtual Select #332
Unanswered
avida-1906
asked this question in
Q&A
Replies: 1 comment
-
Try supplying the So instead of VirtualSelect.init(
{
ele: '#sample-select',
...
} ); try let sampleSelect = document.querySelector( '#sample-select' );
VirtualSelect.init(
{
ele: sampleSelect,
...
} );` and see if that solves your issue. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
why i get the warning in the browser console: index.vue:62 Couldn't initiate Virtual Select
Beta Was this translation helpful? Give feedback.
All reactions