user9046370
user9046370

Reputation:

Use Vue data in stylesheet

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

Answers (1)

Roy J
Roy J

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

Related Questions