first commit

This commit is contained in:
langhuihui
2020-02-29 21:46:39 +08:00
parent e8ac913024
commit 280086670a
22 changed files with 11969 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<template>
<Poptip trigger="hover" :content="'⌚️'+ new Date(value).toLocaleString()">
<Time :time="new Date(value)"></Time>
</Poptip>
</template>
<script>
export default {
name: "StartTime",
props:{
value:String
}
}
</script>
<style scoped>
</style>