mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-25 20:56:44 +08:00
14 lines
333 B
Vue
14 lines
333 B
Vue
<script setup lang="ts">
|
|
import { accessAction } from '@sa/alova/client';
|
|
|
|
const handleAutoRequestSend = async () => {
|
|
accessAction(/^autoRequest/, async ({ send }) => {
|
|
await send();
|
|
});
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<NButton @click="handleAutoRequestSend">{{ $t('page.alova.scenes.triggerAllRequest') }}</NButton>
|
|
</template>
|