9 lines
186 B
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> |