mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
20 lines
243 B
Vue
20 lines
243 B
Vue
<template>
|
|
<div>
|
|
<h1>Info</h1>
|
|
<p>Details: {{ info.message.title }}</p>
|
|
<nuxt-link to="/">
|
|
back
|
|
</nuxt-link>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data () {
|
|
return {
|
|
info: {}
|
|
}
|
|
}
|
|
}
|
|
</script>
|