I'm using this - http://monterail.github.io/vue-multiselect/ Build a single js file with vue and that librarie, but the other code just in script tag. Component is registered. I put some data and it comes empty
It's just a code from "Getting started", nothing special. No one error in console, just empty node. The important thing: i'm using this inside another component with inline-template (upd: same even in root)
That's how file was created with webpack
window.Vue = require('vue');
window.Multiselect = require('vue-multiselect');
Then i just include compiled file and add script
<script>
Vue.component('multiselect', Multiselect);
new Vue({
el: '#vue-app',
data: {
options: ['one', 'two'],
model: ''
},
created: function () {},
computed: {},
methods: {}
});
</script>


Vue.component('multiselect', Multiselect.default)instead