Files
fad_oa/ruoyi-ui/src/views/monitor/admin/index.vue

16 lines
259 B
Vue
Raw Normal View History

2024-07-07 21:09:28 +08:00
<template>
<i-frame :src="url" />
</template>
<script>
import iFrame from "@/components/iFrame/index";
export default {
name: "Admin",
components: { iFrame },
data() {
return {
url: process.env.VUE_APP_MONITRO_ADMIN
};
},
};
</script>