第一次提交

This commit is contained in:
JinLu.Yin
2022-05-06 16:52:59 +08:00
parent 3fd59dabc5
commit baea73ea8e
295 changed files with 28343 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: "Druid",
components: { iFrame },
data() {
return {
url: process.env.VUE_APP_BASE_API + "/druid/login.html"
};
},
};
</script>