16 lines
257 B
Vue
16 lines
257 B
Vue
<template>
|
|
<elFrame :src="sqlApi"/>
|
|
</template>
|
|
<script>
|
|
import { mapGetters } from 'vuex'
|
|
import elFrame from '@/components/iframe/index'
|
|
export default {
|
|
components: { elFrame },
|
|
computed: {
|
|
...mapGetters([
|
|
'sqlApi'
|
|
])
|
|
}
|
|
}
|
|
</script>
|