Skip to content

Instantly share code, notes, and snippets.

View TerabyteTiger's full-sized avatar
💚
Vueveloper

Tyler V TerabyteTiger

💚
Vueveloper
View GitHub Profile
@TerabyteTiger
TerabyteTiger / p4a.css
Created February 14, 2025 13:44
P4A Profile Generator Light Mode CSS Fix
@media (prefers-color-scheme: light) {
html,
body {
background-color: #f3f3f3;
}
}

Demo:

Spoiler warning

Spoiler text. Note that it's important to have a space after the summary tag. You should be able to write any markdown you want inside the <details> tag... just make sure you close <details> afterward.

console.log("I'm a code block!");
@TerabyteTiger
TerabyteTiger / dataVue2ToVue3.vue
Created October 1, 2021 18:22
Example showing migration from Vue 2 Data() to Vue 3's Composition API
<!-- Vue 2.x Options API -->
<script>
export default {
data() {
return {
buttonClicks: 0,
}
}
}
</script>