styles

  • Type: Array(string)
  • Default: []

配置额外 CSS。

比如:

  1. export default {
  2. styles: [
  3. `body { color: red; }`,
  4. `https://a.com/b.css`,
  5. ],
  6. }

会生成 HTML,

  1. <head>
  2. <style>body { color: red; }</style>
  3. <link rel="stylesheet" href="https://a.com/b.css" />
  4. </head>