1234567891011121314151617181920212223242526272829303132 |
- <template>
- <div>
- <doc-alert title="数据库 MyBatis" url="https://doc.iocoder.cn/mybatis/" />
- <doc-alert title="多数据源(读写分离)" url="https://doc.iocoder.cn/dynamic-datasource/" />
- <i-frame v-if="!loading" :src="url" />
- </div>
- </template>
- <script>
- import iFrame from "@/components/iFrame/index";
- import { getConfigKey } from "@/api/infra/config";
- export default {
- name: "Druid",
- components: { iFrame },
- data() {
- return {
- url: process.env.VUE_APP_BASE_API + "/druid/index.html",
- loading: true
- };
- },
- created() {
- getConfigKey("url.druid").then(response => {
- if (!response.data || response.data.length === 0) {
- return
- }
- this.url = response.data;
- }).finally(() => {
- this.loading = false;
- })
- }
- };
- </script>
|