Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我查看了所有文档,但在任何地方都找不到提示。
我想<body>为所有页面的标签添加一些默认属性和类。
<body>
我在哪里可以设置这些?
您可以body使用head 方法和bodyAttrs.
body
bodyAttrs
使用 head 方法的示例:
export default { head () { return { bodyAttrs: { class: 'test-class', 'data-test': 'some-attribute-data', } } }, }
如果要将其添加到所有页面,请在布局中包含代码。