bday2020/ui/src/components/BDay.vue

29 lines
696 B
Vue
Raw Normal View History

2020-09-05 16:25:28 +00:00
<template>
<div class="bday">
<h1>Alles Gute zu Deinem Geburtstag!</h1>
<vue-plyr>
2020-09-05 16:51:59 +00:00
<video poster='../assets/poster.png' autoplay="true">
2020-09-05 23:45:43 +00:00
<source src='/fake_api/part1_240.mp4' type='video/mp4' size='240'>
<source src='/fake_api/part1_360.mp4' type='video/mp4' size='360'>
<source src='/fake_api/part1_480.mp4' type='video/mp4' size='480'>
2020-09-05 16:51:59 +00:00
</video>
2020-09-05 16:25:28 +00:00
</vue-plyr>
</div>
</template>
<script>
export default {
name: 'BDay',
mounted: () => {
document.title = 'Herzlichen Glückwunsch!'
}
}
</script>
<style scoped>
div.bday {
margin: auto;
max-width: 850px;
}
2020-09-05 17:28:34 +00:00
</style>