Files
astra-frontend/src/pages/clients/components/cells/TableCellBodyEmail.vue

15 lines
267 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: "TableCellBodyEmail",
props: {
value: String,
width: Number,
},
};
</script>