mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 13:43:59 +00:00
22 lines
426 B
Vue
22 lines
426 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"/>
|