My question is in the title. I want to add a data attribute to <html> in vue.js (v2).
The auto generated code does not provide any hint to do so neither do the docs, as far as I see.
The desired result should look like:
<html data-foo="bar">
<body>
<div id="app">
<!-- .. -->
</div>
</body>
</html>
Can someone tell me how to accomplish this?