joinpeertube/app/App.vue

33 lines
543 B
Vue
Raw Normal View History

2018-09-21 21:00:42 +00:00
<template>
2019-09-06 13:42:29 +00:00
<div id="app" class="container">
2018-09-21 21:00:42 +00:00
<vue-headful
:title="$t('meta.title')"
:html="{ body: {id: $route.meta.id } }"
:lang="$route.meta.lang"
/>
2019-09-06 13:42:29 +00:00
2018-09-21 21:00:42 +00:00
<header-component></header-component>
2019-09-06 13:42:29 +00:00
2018-09-21 21:00:42 +00:00
<router-view></router-view>
</div>
</template>
2019-09-06 13:42:29 +00:00
<style scoped>
.container {
padding-top: 0;
margin-top: 0;
width: 1024px;
}
</style>
2018-09-21 21:00:42 +00:00
<script>
2019-09-06 13:42:29 +00:00
import HeaderComponent from './components/Header.vue'
export default {
name: 'app',
components: {
HeaderComponent,
},
}
2018-09-21 21:00:42 +00:00
</script>