gtsoft-snail-job-admin/src/views/_builtin/iframe-page/[url].vue
2024-06-07 10:20:29 +08:00

26 lines
395 B
Vue

<script setup lang="ts">
import { onActivated, onMounted } from 'vue';
interface Props {
url: string;
}
defineProps<Props>();
onMounted(() => {
// console.log('mounted');
});
onActivated(() => {
// console.log('activated');
});
</script>
<template>
<div class="h-full">
<iframe id="iframePage" class="size-full" :src="url"></iframe>
</div>
</template>
<style scoped></style>