mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-28 05:39:34 +08:00
feat(table): add table component
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
export { default as BasicArrow } from './src/BasicArrow.vue';
|
||||
export { default as BasicHelp } from './src/BasicHelp';
|
||||
export { default as BasicTitle } from './src/BasicTitle.vue';
|
||||
export { default as BasicEmpty } from './src/BasicEmpty.vue';
|
||||
|
@@ -43,11 +43,16 @@
|
||||
|
||||
&.right {
|
||||
transform: rotate(0deg);
|
||||
|
||||
> span {
|
||||
transition: all 0.3s ease 0.1s !important;
|
||||
}
|
||||
}
|
||||
|
||||
&__active {
|
||||
transform: rotate(90deg) !important;
|
||||
transition: all 0.3s ease 0.1s !important;
|
||||
> span {
|
||||
transform: rotate(90deg) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
@@ -1,28 +0,0 @@
|
||||
<template>
|
||||
<Empty :image="image" :description="description" />
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import { defineComponent } from 'vue';
|
||||
import { Empty } from 'ant-design-vue';
|
||||
|
||||
import emptySrc from '/@/assets/images/page_null.png';
|
||||
|
||||
export default defineComponent({
|
||||
extends: Empty as any,
|
||||
components: { Empty },
|
||||
props: {
|
||||
description: {
|
||||
type: String,
|
||||
default: '暂无内容',
|
||||
},
|
||||
image: {
|
||||
type: String,
|
||||
default: emptySrc,
|
||||
required: false,
|
||||
},
|
||||
},
|
||||
setup() {
|
||||
return {};
|
||||
},
|
||||
});
|
||||
</script>
|
Reference in New Issue
Block a user