Skip to content

Commit 276d836

Browse files
committed
refactor(iframe-page): remove unused lifecycle hooks and clean up script setup
1 parent 7d84062 commit 276d836

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/views/_builtin/iframe-page/[url].vue

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
11
<script setup lang="ts">
2-
import { onActivated, onMounted } from 'vue';
3-
42
interface Props {
53
url: string;
64
}
75
86
defineProps<Props>();
9-
10-
onMounted(() => {
11-
console.log('mounted');
12-
});
13-
14-
onActivated(() => {
15-
console.log('activated');
16-
});
177
</script>
188

199
<template>

0 commit comments

Comments
 (0)