blob: 58f3e4cddc19a008190fbb833d1d3f6b951f4196 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<template>
<main class="main-content">
<h1>News archive</h1>
<News count="Infinity"/>
</main>
</template>
<style scoped>
.main-content {
& h1 {
margin-bottom: 0;
}
}
</style>
<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>
|