此错误出现在带有 Vuetify 1.5.14 和 Vue 2.x 的 IE11 中。我正在使用 v-select 组件,如下所示:
form#login-form
v-select#inputTypeDocument(:items = 'type_documents' required v-model='form.typeDocument' placeholder='Type of document')
export default {
data () {
return {
form: {
typeDocument: 2,
numberDocument: '',
password: ''
},
type_documents: [
{text: 'Type 1', value: 1},
{text: 'Type 2', value: 2}
]
}
}
}
并且在IE11中测试,当你改变v-select的值并点击组件外部或者按tab时,v-model的值被重置为null。而且我还有其他行为相同的 v-select。
在我的 main.js 文件中,我有如下 polyfill:
import 'babel-polyfill'
import Vue from 'vue'
import App from './App'
import axios from 'axio
[..]
在 IE11 中使用 v-select 组件是否有解决此问题的方法?