mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
19 lines
250 B
Vue
19 lines
250 B
Vue
<template>
|
|
<div>
|
|
<h1>Transition properties page</h1>
|
|
<NuxtChild />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
transition: {
|
|
name: 'custom',
|
|
appear: true,
|
|
css: false,
|
|
mode: 'in-out',
|
|
duration: 3000
|
|
}
|
|
}
|
|
</script>
|