13 lines
214 B
Vue

<template>
<div class="flex items-center whitespace-nowrap p-2 text-base text-gray-800">
<slot />
</div>
</template>
<script>
export default {
name: 'TableCell',
inject: ['columns']
};
</script>