mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
27 lines
451 B
Vue
27 lines
451 B
Vue
<script setup lang="ts">
|
|
import {
|
|
expiredTokenRequest,
|
|
} from '@/service'
|
|
|
|
const emit = defineEmits<{
|
|
update: [data: any] // 具名元组语法
|
|
}>()
|
|
|
|
async function expiredToken() {
|
|
const res = await expiredTokenRequest()
|
|
emit('update', res)
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<n-card title="Token Expiration" size="small">
|
|
<n-button type="error" @click="expiredToken">
|
|
click
|
|
</n-button>
|
|
</n-card>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|