feat: add custom config for graphs

This commit is contained in:
Qiuxia Fan
2022-01-12 23:04:31 +08:00
parent 8435beda35
commit 8d0acfa1e0
16 changed files with 303 additions and 77 deletions

View File

@@ -18,7 +18,6 @@ limitations under the License. -->
</el-table>
</template>
<script setup lang="ts">
import { ElTable, ElTableColumn } from "element-plus";
import { defineProps } from "vue";
import type { PropType } from "vue";
@@ -27,6 +26,9 @@ defineProps({
type: Array as PropType<{ label: string; value: string }[]>,
default: () => [],
},
theme: { type: String, default: "" },
config: {
type: Object,
default: () => ({}),
},
});
</script>