yudao-dev/src/views/report/goview/index.vue

19 lines
356 B
Vue
Raw Normal View History

2023-07-26 09:54:50 +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 {
url: 'http://127.0.0.1:3000',
};
},
};
</script>