0

美好的一天,我怎样才能使 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>

在此处输入图像描述

4

1 回答 1

0

通过直接访问slot并绑定需要的属性来解决

<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>
于 2019-07-04T11:31:12.260 回答