Nuxt/examples/layout-transitions/pages/about.vue

17 lines
245 B
Vue
Raw Normal View History

2017-09-08 10:42:00 +00:00
<template>
<div class="container">
<h1>About page</h1>
<nuxt-link to="/">Home page</nuxt-link>
</div>
</template>
<script>
export default {
layout: 'secondary',
2018-01-17 08:38:11 +00:00
transition: 'bounce',
head: {
title: 'About'
}
2017-09-08 10:42:00 +00:00
}
</script>