joinpeertube/src/App.vue

40 lines
906 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
<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-11 13:48:27 +00:00
import HeaderComponent from './components/Header.vue'
2019-09-06 13:42:29 +00:00
2019-09-11 13:48:27 +00:00
export default {
name: 'app',
components: {
HeaderComponent
2019-09-20 13:17:35 +00:00
},
metaInfo: function () {
return {
title: 'JoinPeerTube',
titleTemplate: '%s | JoinPeerTube',
meta: {
description: this.$gettext(
'A free software to take back control of your videos! ' +
'With more than 100 000 hosted videos, viewed more than 6 millions times and 20 000 users, ' +
'PeerTube is the decentralized free software alternative to videos platforms developed by Framasoft'
)
}
}
2019-09-11 13:48:27 +00:00
}
2019-09-06 13:42:29 +00:00
}
2018-09-21 21:00:42 +00:00
</script>