You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-cpt-vue/src/views/monitor/admin/index.vue

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>