16 lines
268 B
Vue
Raw Normal View History

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