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.
24 lines
374 B
24 lines
374 B
<template> |
|
<text>{{time}}</text> |
|
</template> |
|
<script> |
|
import { dataFormat } from "@/utils"; |
|
|
|
export default { |
|
name: "DataFormat", |
|
props: ["date"], |
|
data: function() { |
|
return { |
|
time: "" |
|
}; |
|
}, |
|
mounted() { |
|
this.time = dataFormat(this.date); |
|
}, |
|
watch: { |
|
"$props.date"(props) { |
|
this.time = dataFormat(this.date); |
|
} |
|
} |
|
}; |
|
</script>
|
|
|