mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
22 lines
428 B
Vue
22 lines
428 B
Vue
|
<template>
|
||
|
<div class="post">
|
||
|
<component :is="component"/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
// See https://vuejs.org/v2/guide/components.html#Advanced-Async-Components
|
||
|
const getPost = (slug) => ({
|
||
|
component: import(`@/posts/${slug}`),
|
||
|
error: require('@/posts/404')
|
||
|
})
|
||
|
|
||
|
export default {
|
||
|
beforeCreate () {
|
||
|
this.component = () => getPost(this.$route.params.slug)
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style src="@/assets/css/post.css"/>
|