pinafore/routes/tags/[tagName].html

21 lines
430 B
HTML
Raw Normal View History

2018-01-22 04:02:32 +00:00
<:Head>
2018-03-15 05:14:06 +00:00
<title>Pinafore Hashtag</title>
2018-01-22 04:02:32 +00:00
</:Head>
<Layout page='tags'>
<LazyPage :pageComponent :params />
2018-01-22 04:02:32 +00:00
</Layout>
<script>
import Layout from '../_components/Layout.html'
import LazyPage from '../_components/LazyPage.html'
import pageComponent from '../_pages/tags/[tagName].html'
2018-01-22 04:02:32 +00:00
export default {
components: {
Layout,
LazyPage
},
data: () => ({
pageComponent
})
2018-01-22 04:02:32 +00:00
}
</script>