init: 初始系统模板

This commit is contained in:
TsMask
2023-09-05 14:38:23 +08:00
parent a5bc16ae4f
commit 1075c8ae4f
130 changed files with 22531 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
<script lang="ts" setup>
import LinkiFrame from '@/components/LinkiFrame/index.vue';
import { ref } from 'vue';
const baseUrl = import.meta.env.VITE_API_BASE_URL;
const url = ref<string>(`${baseUrl}/swagger-ui/index.html`);
url.value = 'https://mask-api-midwayjs.apifox.cn/';
</script>
<template>
<LinkiFrame :src="url"></LinkiFrame>
</template>
<style lang="less" scoped></style>