多维表格
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
291 B

<script>
export default {
name: 'TimeCell',
props: ['value'],
computed: {
time() {
return typeof this.value === 'string' ? this.value.replace(/(\d)T(?=\d)/, '$1 ') : this.value
},
},
}
</script>
<template>
<span>{{ time }}</span>
</template>
<style scoped></style>