提交 | 用户 | 时间 | ||
759b1c | 1 | <template> |
H | 2 | <div> |
3 | <i-frame :src="url" /> | |
4 | </div> | |
5 | </template> | |
6 | <script> | |
7 | import iFrame from "@/components/iFrame/index"; | |
8 | import { getConfigKey } from "@/api/infra/config"; | |
9 | export default { | |
10 | name: "Job", | |
11 | components: { iFrame }, | |
12 | data() { | |
13 | return { | |
14 | url: process.env.VITE_APP_XXLJOB_ADMIN + "/xxl-job-admin", | |
15 | }; | |
16 | }, | |
17 | }; | |
18 | </script> |