12 lines
247 B
Vue
12 lines
247 B
Vue
<script setup>
|
|
defineProps({
|
|
stats: { type: Object, default: () => ({}) }
|
|
})
|
|
defineEmits(['quickBlock', 'quickCreate'])
|
|
</script>
|
|
|
|
<template>
|
|
<div class="p-3 border rounded-lg">
|
|
<b>AgendaPulseCardGrid (placeholder)</b>
|
|
</div>
|
|
</template> |