You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
372 B
Vue
23 lines
372 B
Vue
<template>
|
|
<div class="app-containerO">
|
|
<iframe src="https://pidoutv.com/" frameborder="0"></iframe>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.app-containerO {
|
|
margin: 10px;
|
|
box-shadow: 0px 0px 13px 0px #0452C6;
|
|
border-radius: 10px;
|
|
width: 100%;
|
|
height: 740px;
|
|
}
|
|
iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style> |