Skip to content

Commit 4133c52

Browse files
committed
bugfix
1 parent 77d77a2 commit 4133c52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const projectIndex = useCookie('projectIndex', {
5353
onMounted(() => {
5454
projectIndex.value += 1
5555
projectIndex.value %= projects.length
56-
project = projects[projectIndex.value]
56+
project.value = projects[projectIndex.value]
5757
})
5858
5959
const project = ref(projects[projectIndex.value])

0 commit comments

Comments
 (0)