epicmaxco / vuestic-ui

Vuestic UI is an open-source Vue 3 component library designed for rapid development, easy maintenance, and high accessibility. Maintained by Epicmax (@epicmaxco).
https://vuestic.dev
MIT License
3.52k stars 340 forks source link

Tab underlining does not adjust after switching languages #4327

Closed pogrib0k closed 5 months ago

pogrib0k commented 5 months ago

Vuestic-ui version: 1.9.11

Description

image

image

pogrib0k commented 5 months ago

I can fixed this with this:

    <template #tabs>
      <VaTab v-for="{ name, to } in routes" :key="to+$t(name)" :to="to">
        {{ $t(name) }}
      </VaTab>
    </template>