2025-06-24 00:35:17 +02:00

54 lines
851 B
Vue

<template>
<!-- eslint-disable -->
<td
class="ds-table-col"
:class="[
align && `ds-table-col-${align}`
]">
<slot/>
</td>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
/**
* Used in combination with the table component to create data tables.
* @version 1.0.0
* @see DsTable
* @private
*/
export default defineComponent({
name: 'DsTableCol',
inject: {
$parentTable: {
default: null
}
},
props: {
/**
* The column width
*/
width: {
type: [String, Number, Object],
default: null
},
/**
* The column align
* @options left|center|right
*/
align: {
type: String,
default: null,
validator: value => {
return value.match(/(left|center|right)/)
}
}
},
computed: {},
});
</script>