Advertisement
Guest User

Untitled

a guest
Jan 20th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. actions: {
  2.     changeBackground(url) {
  3.         console.log(url) // => file://path/to/image.png
  4.         document.body.style.backgroundImage = `url(${url})`;
  5.         console.log(document.body.style); // CSSStyleDeclaration {..., backgroundImage: "", ...}
  6.     }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement