Files
xiaozhi-server/ruoyi-ui/src/views/monitor/admin/index.vue
T
2021-07-09 17:15:09 +08:00

17 lines
288 B
Vue

<template>
<i-frame :src="url" />
</template>
<script>
import iFrame from "@/components/iFrame/index";
export default {
name: "Admin",
components: { iFrame },
data() {
console.log(process.env)
return {
url: process.env.VUE_APP_MONITRO_ADMIN
};
},
};
</script>