16 lines
276 B
Vue
Raw Normal View History

2020-02-13 10:48:51 +08:00
<template>
<i-frame :src="url" />
2020-02-13 10:48:51 +08:00
</template>
<script>
import iFrame from "@/components/iFrame/index";
2020-02-13 10:48:51 +08:00
export default {
name: "Druid",
components: { iFrame },
2020-02-13 10:48:51 +08:00
data() {
return {
url: process.env.VUE_APP_BASE_API + "/druid/login.html"
2020-02-13 10:48:51 +08:00
};
},
};
</script>