2023-02-11 00:44:00 +08:00
|
|
|
<template>
|
|
|
|
<ContentWrap>
|
|
|
|
<IFrame :src="src" />
|
|
|
|
</ContentWrap>
|
|
|
|
</template>
|
2023-06-21 19:14:34 +08:00
|
|
|
<script setup lang="ts">
|
|
|
|
defineOptions({ name: 'GoView' })
|
|
|
|
|
2023-02-11 00:44:00 +08:00
|
|
|
const src = 'http://127.0.0.1:3000'
|
|
|
|
</script>
|