bday2020/ui/src/components/BDay.vue

30 lines
640 B
Vue
Raw Normal View History

2020-09-05 16:25:28 +00:00
<template>
2020-09-06 00:44:39 +00:00
<div class="bday">
<h1>Alles Gute zu Deinem Geburtstag!</h1>
<vue-plyr>
<video poster="../assets/poster.png" autoplay="true">
<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" />
</video>
</vue-plyr>
</div>
2020-09-05 16:25:28 +00:00
</template>
<script>
export default {
2020-09-06 00:44:39 +00:00
name: "BDay",
mounted: () => {
document.title = "Herzlichen Glückwunsch!";
},
};
2020-09-05 16:25:28 +00:00
</script>
<style scoped>
div.bday {
2020-09-06 00:44:39 +00:00
margin: auto;
max-width: 850px;
2020-09-05 16:25:28 +00:00
}
2020-09-05 17:28:34 +00:00
</style>