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

@@ -48,9 +48,13 @@ const position = { of: '#data' }
const showIndicator = ref(true)
const shading = ref(true)
const showPane = ref(true)
const loading = ref(false)
const loading = ref(computed(() => props.loading))
const props = defineProps({
data: Array as () => any[],
loading: {
type: Boolean,
default: false
}
})
const data = computed(() => props.data)