vuetify html tag lang

Solutions on MaxInterview for vuetify html tag lang by the best coders in the world

showing results for - "vuetify html tag lang"
Daniela
04 Nov 2020
1new Vue({
2  created() {
3    const html = document.documentElement // returns the html tag
4    html.setAttribute('lang', 'sv')
5  }
6  // other options
7})
8