mirror of
https://github.com/zclzone/vue-naive-admin.git
synced 2025-12-28 12:10:20 +08:00
wip: crud table
This commit is contained in:
16
src/components/table/CrudTable.vue
Normal file
16
src/components/table/CrudTable.vue
Normal file
@@ -0,0 +1,16 @@
|
||||
<template>
|
||||
<QueryBar v-if="$slots.queryBar" mb-30>
|
||||
<slot name="queryBar" />
|
||||
</QueryBar>
|
||||
<slot />
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
const loading = ref(false)
|
||||
const tableData = ref([])
|
||||
const showModal = ref(true)
|
||||
const segmented = {
|
||||
content: 'soft',
|
||||
footer: 'soft',
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user