Update CSS styles and GraphQL queries

This commit is contained in:
Dede Fuji Abdul
2024-03-11 20:57:45 +07:00
parent 4b1437e1d6
commit d8d5dc9f5b
5 changed files with 62 additions and 22 deletions

View File

@@ -109,11 +109,15 @@ import { saveAs } from 'file-saver'
import { Workbook } from 'exceljs'
const position = { of: '#data' }
const showIndicator = ref(true)
const loading = ref(false)
const loading = ref(computed(() => props.loading))
const shading = ref(true)
const showPane = ref(true)
const props = defineProps({
data: Array as () => any[],
loading: {
type: Boolean,
default: false,
},
})
const data = computed(() => props.data)
const onExporting = (e: any) => {