1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-26 14:23:14 +03:00
guide/front/client/page/ArticlePage.vue

18 lines
296 B
Vue
Raw Normal View History

2018-09-18 21:59:07 +03:00
<template>
2018-09-20 10:26:36 +03:00
<article-item />
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'
@Component({
components: {
2018-09-20 10:26:36 +03:00
ArticleItem
2018-09-18 21:59:07 +03:00
}
})
export default class ArticlePage extends Vue {}
</script>