Files
plugin-rtsp/dashboard/components/StartTime.vue
2020-03-10 15:39:57 +08:00

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>