index.vue 310 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <template> <i-frame :src="url" /> </template> <script> import iFrame from "@/components/iFrame/index"; export default { name: "Druid", components: { iFrame }, data() { return { url: "http://skywalking.shop.iocoder.cn/trace", // TODO 芋艿,后续改成配置读取 }; }, }; </script>