summaryrefslogtreecommitdiff
path: root/src/views/News.vue
blob: 24aa689f38e895147ec414729e8e88c7d5722ed2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<template>
	<main class="main-content">
		<h1>News</h1>
		<News count="Infinity"/>
	</main>
</template>

<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
import News from "@/components/News.vue";

@Component({
	components: {
		News,
	},
})
export default class NewsV extends Vue {}
</script>