Vuetify HTML Tag Lang

new Vue({
  created() {
    const html = document.documentElement // returns the html tag
    html.setAttribute('lang', 'sv')
  }
  // other options
})
Attractive Ant