1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-25 22:02:58 +03:00
guide/front/client/page/ArticlePage.vue

24 lines
436 B
Vue
Raw Normal View History

2018-09-18 21:59:07 +03:00
<template>
<article-item
:categoryId="categoryId"
/>
2018-09-18 21:59:07 +03:00
</template>
<script lang="ts">
import Vue from 'vue'
2018-09-20 10:26:36 +03:00
import ArticleItem from 'client/components/Article.vue'
2018-09-18 21:59:07 +03:00
import Component from 'vue-class-component'
import { Prop } from 'vue-property-decorator';
2018-09-18 21:59:07 +03:00
@Component({
name: 'article-page',
2018-09-18 21:59:07 +03:00
components: {
2018-09-20 10:26:36 +03:00
ArticleItem
2018-09-18 21:59:07 +03:00
}
})
export default class ArticlePage extends Vue {
@Prop(String) categoryId!: string
}
2018-09-18 21:59:07 +03:00
</script>