Heyo o/, having some issues (and yes I'm a novice lol).
(copied from #💬・discussion)
If I go from page A to index it works perfectly fine, but if I go from index to page A, the it only changes the url, not the contents of the page. Some config I need to do before?
Structure
| app.vue
| pages/
---| index.vue
---| projects.vue
app.vue
<template>
<NuxtPage />
</template>
<style>
.page-enter-active,
.page-leave-active {
transition: all 0.4s;
}
.page-enter-from,
.page-leave-to {
opacity: 0;
filter: blur(1rem);
}
</style>
index.vue
<script>
import "~/assets/css/index.css";
import '~/assets/css/common.css';
</script>
<template>
//[...]
<NuxtLink to="/projects">Projects</NuxtLink>
</template>
projects.vue
<script>
import "~/assets/css/projects.css";
import '~/assets/css/common.css';
//[...]
</script>
<template>
[...]
<NuxtLink to="/">Back home</NuxtLink>
[...]
</template>
Can post more info if necessary.
Also feel free to ping me if answering ^^
Also found these errors, didn't want to open a report just yet to be absolutely sure its not on my end