index.vue 356 B

12345678910111213141516171819
  1. <template>
  2. <div>
  3. <doc-alert title="大屏设计器" url="https://doc.iocoder.cn/report/screen/" />
  4. <i-frame :src="url" />
  5. </div>
  6. </template>
  7. <script>
  8. import iFrame from "@/components/iFrame/index";
  9. export default {
  10. name: "GoView",
  11. components: { iFrame },
  12. data() {
  13. return {
  14. url: 'http://127.0.0.1:3000',
  15. };
  16. },
  17. };
  18. </script>