16 lines
276 B
Vue
Raw Normal View History

2021-02-14 23:01:21 +08:00
<template>
2022-02-15 22:24:48 +08:00
<i-frame :src="url" />
2021-02-14 23:01:21 +08:00
</template>
<script>
2022-02-15 22:24:48 +08:00
import iFrame from "@/components/iFrame/index";
2021-02-14 23:01:21 +08:00
export default {
name: "Druid",
2022-02-15 22:24:48 +08:00
components: { iFrame },
2021-02-14 23:01:21 +08:00
data() {
return {
2022-02-15 22:24:48 +08:00
url: process.env.VUE_APP_BASE_API + "/druid/index.html"
2021-02-14 23:01:21 +08:00
};
},
};
</script>