美好的一天,如何使v-select验证在IE 11上正常工作?
我在vue脚本上添加了require('es6-promise').polyfill();
,但直到遇到错误无法生成渲染功能。
<v-select :options="books" label="title" v-model="selected">
<template #search="{attributes, events}">
<input
class="vs__search"
:required="!selected"
v-bind="attributes"
v-on="events"
/>
</template>
</v-select>
答案 0 :(得分:0)
直接访问插槽并绑定必需的属性即可解决
<v-select :options="books" label="title" v-model="selected">
<template #search="{attributes, events}">
<input :required="!selected" aria-label="Search for option" role="combobox" type="search" autocomplete="off" class="vs__search">
</template>
</v-select>