fix contest conflict.

This commit is contained in:
2023-03-16 14:49:34 +08:00
parent 51328770c6
commit 0fa885d892
15 changed files with 290 additions and 148 deletions

View File

@@ -0,0 +1,15 @@
<script lang="ts" setup>
import { User } from "~/utils/types"
interface Props {
user: User
}
const props = defineProps<Props>()
</script>
<template>
<n-space align="center">
<n-button size="small" secondary type="primary">编辑</n-button>
<n-button size="small" secondary type="error">封号</n-button>
<n-button size="small" secondary type="default">删除</n-button>
</n-space>
</template>