[Add] copy news to ocpf-news

update the content in ocfp-news
This commit is contained in:
mysper
2021-03-03 14:59:23 +08:00
parent 2e90998388
commit 529b0fc9dc
8 changed files with 603 additions and 0 deletions

26
src/pages/OCFP.vue Normal file
View File

@@ -0,0 +1,26 @@
<template>
<div class="news">
<NewsHeader id="news-header" />
<Schedule id="news-schedule" />
<Agenda id="news-agenda" />
<!-- <Footer></Footer> should be put at App.vue (?) -->
</div>
</template>
<script lang="ts">
import { Component, Prop, Vue } from 'vue-property-decorator';
import NewsHeader from '@/components/ocfp-news/Header.vue';
import Schedule from '@/components/ocfp-news/Schedule.vue';
import Agenda from '@/components/ocfp-news/Agenda.vue';
@Component({
components: {
NewsHeader,
Schedule,
Agenda
}
})
export default class News extends Vue {
@Prop() private msg!: string;
}
</script>