This commit is contained in:
dute7liang
2023-12-19 22:16:38 +08:00
commit 7b450eac94
297 changed files with 25985 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>