2天我在这个错误中搜索并尝试了很多方法但没有工作我不知道这个错误或什么也没有结果我使用vue.js ver 2.1.10和laravel 5.4。 我的template.vue
<template>
<div>
<multiselect v-model="value" :options="options">
</multiselect>
</div>
</template>
<script>
import Vue from 'vue'
import axios from 'axios' //similar to vue-resource
import Multiselect from 'vue-multiselect'
export default {
components: { Multiselect },
props: ['title'],
data(){
return{
model: {
'title':'',
'desc':'',
},
value: [],
options: ['list', 'of', 'options'],
}
},
</script>
答案 0 :(得分:0)
请显示多选文档的道具定义。看起来你命名了一个&#34; key&#34;谁不能被用作道具的名称,因为它是为v-for物品保留的