lanan-system-vue/src/views/report/goview/index.vue

19 lines
359 B
Vue
Raw Normal View History

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>