增加UI界面

This commit is contained in:
李宇翔
2020-03-10 15:39:57 +08:00
parent 1e6c07850a
commit eb41f1dbec
13 changed files with 10836 additions and 12 deletions

View File

@@ -0,0 +1,17 @@
<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>