Skip to content

Instantly share code, notes, and snippets.

@infantiablue
Created January 17, 2021 08:09
Show Gist options
  • Save infantiablue/0c23af37db24766a3bad25476e1c569f to your computer and use it in GitHub Desktop.
Save infantiablue/0c23af37db24766a3bad25476e1c569f to your computer and use it in GitHub Desktop.
Hnews Initializing Variables
created() {
if (!("topic" in localStorage)) localStorage.topic = "top";
this.loadStories(localStorage.topic);
if (!("theme" in localStorage)) localStorage.theme = "dark";
},
mounted() {
this.toggleDarkMode(localStorage.theme);
this.$refs[`topic-${localStorage.topic}`].classList.add("text-green-500");
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment