vuetify html tag lang code example
Example: vuetify html tag lang
new Vue({
created() {
const html = document.documentElement // returns the html tag
html.setAttribute('lang', 'sv')
}
// other options
})
new Vue({
created() {
const html = document.documentElement // returns the html tag
html.setAttribute('lang', 'sv')
}
// other options
})