Files
smart-admin/smart-admin-web/src/views/support/monitor/sql.vue
2020-04-07 22:10:57 +08:00

34 lines
586 B
Vue

<template>
<div>
<iframe :src="url" frameborder="0" height="800" scrolling="yes" width="100%"></iframe>
</div>
</template>
<script>
import config from '@/config';
const baseUrl = config.baseUrl.apiUrl;
export default {
name: 'Sql',
components: {},
props: {},
data() {
return {
url: baseUrl + '/druidMonitor'
};
},
computed: {},
watch: {},
filters: {},
created() {},
mounted() {},
beforeCreate() {},
beforeMount() {},
beforeUpdate() {},
updated() {},
beforeDestroy() {},
destroyed() {},
activated() {},
methods: {}
};
</script>