mirror of
https://github.com/Monibuca/plugin-rtsp.git
synced 2025-10-05 07:36:57 +08:00
17 lines
294 B
Vue
17 lines
294 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> |