Files
DLE/frontend/src/components/cells/CellNumber.vue

9 lines
186 B
Vue

<template>
<span>{{ value }}</span>
</template>
<script setup>
defineProps({ value: [String, Number] });
</script>
<style scoped>
span { font-variant-numeric: tabular-nums; }
</style>