'How can I disable animations for Vuetify v-expansion-panel component?

I'd like to be able to disable the open/close animations for the v-expansion-panel component, i.e. the panel should instantly appear opened/closed when changes are made. How can this be done?



Solution 1:[1]

It works on me.

<style lang="scss">
 .v-item-group.v-expansion-panels {
    &,
    & .v-expansion-panel,
    & .v-expansion-panel-content {
      transition: none !important;
    }
  }
</style>

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Eray Turan