mirror of
https://github.com/aelve/guide.git
synced 2024-12-27 06:45:16 +03:00
18 lines
296 B
Vue
18 lines
296 B
Vue
<template>
|
|
<article-item />
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue'
|
|
import ArticleItem from 'client/components/Article.vue'
|
|
import Component from 'vue-class-component'
|
|
|
|
@Component({
|
|
components: {
|
|
ArticleItem
|
|
}
|
|
})
|
|
|
|
export default class ArticlePage extends Vue {}
|
|
</script>
|