0

I need to remove the completely default animation from vue-select.

How to do it? I tried to replace the styles from the box with my own, but I didn’t get the result..

Pradeep
  • 9,667
  • 13
  • 27
  • 34

1 Answers1

1

There is corresponding section in the docs, which states how to change transitions - https://vue-select.org/api/props.html#transition

So, you can use it like this:

<v-select :options="options" transition="none"></v-select>
Justice47
  • 682
  • 6
  • 16