Reputation:
How can I access Vue data in my stylesheet?
I am writing in Sass, but I don't think that it has anything to do with the issue.
I tried this, but it didnt work:
#app
background-color: {{ myText }}
Upvotes: 1
Views: 58
Reputation: 43899
Stylesheets are not dynamic like the DOM. There is no updating them. You can use the class
and style
bindings to affect the styling of your page by changing element styling or applying different classes to elements.
Upvotes: 2