[Vuejs]-How do I use SCSS variables with data-attributes in Vue JS and Bootstrap Vue

0👍

Unfortunately it is not possible to use Sass variables in custom data attributes as I wanted because the specification for data attributes won’t allow them. They expect a DOMString name, not a Sass variable.

https://html.spec.whatwg.org/multipage/dom.html#custom-data-attribute

Leave a comment