22 lines
355 B
Vue
22 lines
355 B
Vue
<template>
|
|
<div>
|
|
<h2>Trailer</h2>
|
|
<div class="streamWrapper">
|
|
<iframe
|
|
src="https://cdn.fem-net.de/i/g08eOgaltPONQ83O7EZ80"
|
|
frameborder="0"
|
|
scrolling="no"
|
|
allowfullscreen="true"
|
|
></iframe>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Trailer'
|
|
}
|
|
</script>
|
|
|
|
<style scoped></style>
|