美好的一天,我怎样才能使 v-select 验证在 IE 11 上工作?我require('es6-promise').polyfill();
在我的 vue 脚本中添加,但直到我遇到错误无法生成渲染函数。
<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>