[Vuejs]-Manipulate body and html background from a component in a nuxt.js application

0👍

You could simply use pure Javascript code that manipulate your DOM:

document.querySelector('body').style.backgroundColor=siteData.background
//document.querySelector('body').style.backgroundColor='#ff5' 

you could also create a computed property to do that

Leave a comment