Files
fad_oa/ruoyi-ui/src/views/monitor/admin/index.vue
huangxing123 fc04b10d4f xg-v1.0
2024-07-07 21:09:28 +08:00

16 lines
259 B
Vue

<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>