Files
acs_jinbao/acs/nladmin-ui/src/views/monitor/sql/index.vue
USER-20220102CG\noblelift cee5a57757 add acs
2023-06-25 19:29:51 +08:00

17 lines
273 B
Vue

<template>
<elFrame :src="sqlApi" />
</template>
<script>
import { mapGetters } from 'vuex'
import elFrame from '@/components/Iframe/index'
export default {
name: 'Sql',
components: { elFrame },
computed: {
...mapGetters([
'sqlApi'
])
}
}
</script>