[Vuejs]-Dynamic v-slot names

1👍

This should work:

template(v-for="(tab, key) of tabs" :key="key" v-slot:[`item-title.${key + 1}`])
  .tab
    ThemeIcon(:themeId="tab.themeId")
    div {{tab.content}}
👤tao

Leave a comment