add acm helper.

This commit is contained in:
2023-04-12 19:47:36 +08:00
parent 987d27cb51
commit d99ecfefca
5 changed files with 31 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
<script lang="ts" setup>
const columns: DataTableColumn[] = [
{ title: "AC 时间", key: "ac_time" },
{ title: "问题 ID", key: "problem_display_id" },
{ title: "一血", key: "is_first_ac" },
{ title: "用户名", key: "username" },
{ title: "状态", key: "status" },
{ title: "选项", key: "actions" },
]
</script>
<template>
<n-data-table :columns="columns"></n-data-table>
</template>