3
我正在使用這個 - http://monterail.github.io/vue-multiselect/ 用vue和該庫創建一個js文件,但其他代碼只在腳本標記中。組件已註冊。我把一些數據,並談到空Vue js不渲染自定義組件
這只是從代碼的「入門」,沒什麼特別的。控制檯中沒有任何錯誤,只是空的節點。我用這另一個組件內部進行inline-template
:最重要的事情(UPD:即使在根相同)
這就是文件是如何用的WebPack創建
window.Vue = require('vue');
window.Multiselect = require('vue-multiselect');
然後我就包括編譯文件並添加腳本
<script>
Vue.component('multiselect', Multiselect);
new Vue({
el: '#vue-app',
data: {
options: ['one', 'two'],
model: ''
},
created: function() {},
computed: {},
methods: {}
});
</script>
沒有足夠的上下文。請顯示更多組件代碼 – thanksd
@thanksd我做到了。 – Fortael
嘗試'Vue.component('multiselect',Multiselect.default)'代替 – thanksd