iview/examples/routers/time.vue
2018-05-28 14:15:43 +08:00

18 lines
No EOL
364 B
Vue

<template>
<div>
<Time :time="1526608921" />
<Time :time="1652839997" />
<Time :time="ddd" interval="1" />
</div>
</template>
<script>
export default {
data () {
return {
ddd: new Date('2019-05-28 14:12:00')
};
},
computed: {},
methods: {}
};
</script>