I have a question regarding adding a data attribute to the <html>
element in vue.js (v2). I haven't been able to find any guidance on how to do this in the auto generated code or the documentation.
The end goal is to achieve this desired output:
<html data-foo="bar">
<body>
<div id="app">
<!-- .. -->
</div>
</body>
</html>
If anyone can advise me on how to make this happen, I would greatly appreciate it.