mirror of
https://github.com/Monibuca/plugin-jessica.git
synced 2025-09-27 04:16:04 +08:00
18 lines
316 B
Vue
18 lines
316 B
Vue
<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> |