This commit is contained in:
2022-04-18 11:22:08 +08:00
commit c9d2e1910a
573 changed files with 59833 additions and 0 deletions
+15
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/index.html"
};
},
};
</script>