mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
13 lines
220 B
Vue
13 lines
220 B
Vue
|
<template>
|
||
|
<div class="child">
|
||
|
<h1>Profile</h1>
|
||
|
<div class="spacer" style="width: 100%; height: 3000px; background: grey"></div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
transition: 'fade'
|
||
|
}
|
||
|
</script>
|