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.
25 lines
378 B
25 lines
378 B
4 years ago
|
<template>
|
||
|
<text>{{time}}</text>
|
||
|
</template>
|
||
|
<script>
|
||
|
import { dateFormatT } from "@/utils";
|
||
|
|
||
|
export default {
|
||
|
name: "DataFormatT",
|
||
|
props: ["date"],
|
||
|
data: function() {
|
||
|
return {
|
||
|
time: ""
|
||
|
};
|
||
|
},
|
||
|
mounted() {
|
||
|
this.time = dateFormatT(this.date);
|
||
|
},
|
||
|
watch: {
|
||
|
"$props.date"(props) {
|
||
|
this.time = dateFormatT(this.date);
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
</script>
|