wip: crud table

This commit is contained in:
张传龙
2022-09-01 14:53:18 +08:00
parent 9ea8ffd7fd
commit f2e2fc6819
4 changed files with 330 additions and 98 deletions

View File

@@ -5,8 +5,12 @@
</n-space>
<div flex-shrink-0>
<n-button secondary type="primary">重置</n-button>
<n-button ml-20 type="primary">搜索</n-button>
<n-button secondary type="primary" @click="emit('reset')">重置</n-button>
<n-button ml-20 type="primary" @click="emit('search')">搜索</n-button>
</div>
</div>
</template>
<script setup>
const emit = defineEmits(['search', 'reset'])
</script>