This commit is contained in:
zhuoda
2020-04-08 20:37:51 +08:00
parent b9e0e5c004
commit 0454869921
455 changed files with 5251 additions and 2520 deletions

View File

@@ -0,0 +1,33 @@
<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>