mirror of
https://github.com/YunaiV/ruoyi-vue-pro.git
synced 2025-11-03 06:59:59 +08:00
10 lines
228 B
Vue
10 lines
228 B
Vue
<template>
|
|
<ContentWrap>
|
|
<IFrame :src="src" />
|
|
</ContentWrap>
|
|
</template>
|
|
<script setup lang="ts" name="Server">
|
|
const BASE_URL = import.meta.env.VITE_BASE_URL
|
|
const src = ref(BASE_URL + '/admin/applications')
|
|
</script>
|