15 lines
265 B
Vue
15 lines
265 B
Vue
<template lang="pug">
|
|
.flex.box-border.px-4.items-center.w-full(:style="{ minWidth : width + 'px' }")
|
|
span.text-sm {{value}}
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "TableCellBodyAge",
|
|
props: {
|
|
value: String,
|
|
width: Number,
|
|
},
|
|
};
|
|
</script>
|