feat: 更新依赖版本,添加调整钱包组件及其在用户页面的集成

This commit is contained in:
2026-01-26 14:59:43 +07:00
parent 2ca0357f01
commit 8651f5c0d0
7 changed files with 185 additions and 22 deletions

View File

@@ -47,8 +47,9 @@ function refresh() {
<template>
<NSpace :align="itemAlign" justify="space-between" wrap class="lt-sm:w-200px">
<slot name="prefix"></slot>
<div class="space-x-5">
<div class="flex items-center space-x-5">
<slot name="default">
<slot name="suffix"></slot>
<NButton v-if="operations?.add" size="small" ghost type="primary" @click="add">
<template #icon>
<icon-ic-round-plus class="text-icon" />
@@ -78,7 +79,6 @@ function refresh() {
</NButton>
<TableColumnSetting v-if="operations?.columns" v-model:columns="columns" />
</div>
<slot name="suffix"></slot>
</NSpace>
</template>