mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-09-24 07:19:46 +08:00
16 lines
260 B
Vue
16 lines
260 B
Vue
<template>
|
|
<i-frame :src="url" />
|
|
</template>
|
|
<script>
|
|
import iFrame from "@/components/iFrame/index";
|
|
export default {
|
|
name: "XxlJob",
|
|
components: { iFrame },
|
|
data() {
|
|
return {
|
|
url: process.env.VUE_APP_XXL_JOB_ADMIN
|
|
};
|
|
},
|
|
};
|
|
</script>
|