UNPKG

214 BPlain TextView Raw
1<template>
2<div>
3 <h1> {{ post.title }} </h1>
4</div>
5</template>
6
7<script>
8export default {
9 asyncData: ({ app, route }) => {
10 return {
11 post: app.$content('/posts').get(route.path)
12 }
13 }
14}
15</script>