We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5063b12 commit 5c34c59Copy full SHA for 5c34c59
1 file changed
app.vue
@@ -45,8 +45,13 @@ onMounted(() => {
45
projectIndex.value += 1
46
projectIndex.value %= projects.length
47
project.value = projects[projectIndex.value]
48
+ console.log("MOUNTED") // DBG
49
})
50
51
+watch(project, (newVal, oldVal) => {
52
+ console.log('project changed:', newVal, 'from:', oldVal)
53
+}) // DBG
54
+
55
const route = useRoute()
56
onMounted(() => {
57
let redirect = links
@@ -72,8 +77,8 @@ useHead(() => ({
72
77
<style lang="scss">
73
78
:root {
74
79
--primary: #cb5955;
75
- --foreground: black;
76
- --background: white;
80
+ --foreground: white;
81
+ --background: black;
82
83
&.black {
84
--foreground: white;
0 commit comments