admin-vben5/apps/web-antd/src/views/system/oss/index.vue

14 lines
269 B
Vue
Raw Normal View History

2024-08-07 08:57:56 +08:00
<script setup lang="ts">
2024-09-18 15:19:37 +08:00
import { useRouter } from 'vue-router';
import { Page } from '@vben/common-ui';
const router = useRouter();
2024-08-07 08:57:56 +08:00
</script>
<template>
2024-09-18 15:19:37 +08:00
<Page>
<a-button @click="() => router.push('/system/oss-config')">配置</a-button>
</Page>
2024-08-07 08:57:56 +08:00
</template>