styles
- Type:
Array(string)
- Default:
[]
配置额外 CSS。
比如:
export default {
styles: [
`body { color: red; }`,
`https://a.com/b.css`,
],
}
会生成 HTML,
<head>
<style>body { color: red; }</style>
<link rel="stylesheet" href="https://a.com/b.css" />
</head>