Answer the question
In order to leave comments, you need to log in
How to connect Vue.js component from cdn?
Found a component, you need to connect.
<script>
import Multiselect from 'vue-multiselect'
// register globally
Vue.component(Multiselect)
export default {
// OR register locally
components: { Multiselect },
data () {
return {
value: null,
options: ['list', 'of', 'options']
}
}
}
</script>
Answer the question
In order to leave comments, you need to log in
https://monterail.github.io/vue-multiselect/#sub-g... point "via CDN" + google =
https://jsfiddle.net/89j7z94u/3/
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question