懒羊羊
2024-01-31 e57a8990ae56f657a59c435a0613c5f7a8728003
提交 | 用户 | 时间
e57a89 1 <template>
2   <i-frame :src="url" />
3 </template>
4 <script>
5 import iFrame from "@/components/iFrame/index";
6 export default {
7   name: "Druid",
8   components: { iFrame },
9   data() {
10     return {
11       url: process.env.VUE_APP_BASE_API + "/druid/login.html"
12     };
13   },
14 };
15 </script>