This commit is contained in:
shizhong
2023-02-09 11:09:40 +08:00
59 changed files with 1130 additions and 165 deletions

View File

@ -0,0 +1,18 @@
<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 {
url: 'http://127.0.0.1:3000',
};
},
};
</script>