Files
newfreeplanet_OLD/src/components/CVideo/CVideo.vue
2021-09-16 21:08:02 +02:00

28 lines
715 B
Vue
Executable File

<template>
<div>
<div class="row justify-evenly items-center q-gutter-sm ">
<div class="text-center">
<div class="subtitle_small text-blue" v-html="title"></div>
<div class="">
<iframe
:title="title"
:width="tools.getwidthscale(mythis, getValDb('YT_W', false), 800)"
:height="tools.getheightbywidth(mythis, getValDb('YT_W', false), getValDb('YT_H', false), 800)"
:src="tools.getvideobyidyoutube(myvideokey)"
allowfullscreen
></iframe>
</div>
</div>
</div>
</div>
</template>
<script lang="ts" src="./CVideo.ts">
</script>
<style lang="scss" scoped>
@import './CVideo.scss';
</style>