2024-07-30 15:07:56 +08:00
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<doc-alert title="大屏设计器" url="https://doc.iocoder.cn/report/screen/" />
|
|
|
|
|
<i-frame :src="url" />
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
import iFrame from "@/components/iFrame/index";
|
|
|
|
|
export default {
|
|
|
|
|
name: "GoView",
|
|
|
|
|
components: { iFrame },
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2024-08-08 20:01:17 +08:00
|
|
|
url: 'http://192.168.1.17:3000',
|
2024-07-30 15:07:56 +08:00
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|