This commit is contained in:
张良(004796)
2024-03-04 18:57:53 +08:00
commit ca842d24f3
491 changed files with 53313 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<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>