[Add] copy news to ocpf-news
update the content in ocfp-news
This commit is contained in:
26
src/pages/OCFP.vue
Normal file
26
src/pages/OCFP.vue
Normal 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>
|
||||
Reference in New Issue
Block a user