html.lang

  • Type: string
  • Default: en

Configure the HTML language attribute.

<html lang="en"></html>

Example

For example to set HTML language to zh-CN:

export default {
  html: {
    lang: 'zn-CN',
  },
};

Result:

<html lang="zn-CN"></html>
ON THIS PAGE