21 lines
400 B
Vue
21 lines
400 B
Vue
<template>
|
|
<div>
|
|
<NuxtPage />
|
|
<NuxtLink to="/">index</NuxtLink>
|
|
<NuxtLink to="/about">about</NuxtLink>
|
|
</div>
|
|
</template>
|
|
|
|
|
|
<style>
|
|
/* You can customise the default animation here. */
|
|
|
|
::view-transition-old(root) {
|
|
animation: 90ms cubic-bezier(0.4, 0, 1, 1) both fade-out;
|
|
}
|
|
|
|
::view-transition-new(root) {
|
|
animation: 210ms cubic-bezier(0, 0, 0.2, 1) 90ms both fade-in;
|
|
}
|
|
</style>
|