feat: wip add blog page

This commit is contained in:
kmacoders
2021-06-30 23:46:29 +07:00
parent 7eb7e72c55
commit 5fd7175364
8 changed files with 193 additions and 0 deletions

22
pages/blog/_slug.vue Normal file
View File

@@ -0,0 +1,22 @@
<template>
<div>
<banner />
<banner />
<banner />
<banner />
<banner />
</div>
</template>
<script>
import { Vue, Component } from 'nuxt-property-decorator'
import Banner from '@/components/templates/home/Banner'
@Component({
components: {
Banner
}
})
export default class Index extends Vue {
}
</script>