mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
21 lines
366 B
Vue
21 lines
366 B
Vue
<template>
|
|
<iframe
|
|
ref="el"
|
|
:src="item.src"
|
|
frameborder="0"
|
|
:width="item.width"
|
|
:height="item.height"
|
|
></iframe>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue'
|
|
import { popupProps, usePopup } from '../mixins'
|
|
|
|
export default defineComponent({
|
|
name: 'IframePopup',
|
|
props: popupProps,
|
|
setup: usePopup,
|
|
})
|
|
</script>
|