mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-11-12 21:53:48 +08:00
34 lines
586 B
Vue
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>
|