iview/examples/routers/time.vue

18 lines
365 B
Vue
Raw Normal View History

2018-05-17 17:51:37 +08:00
<template>
<div>
2018-05-18 10:32:51 +08:00
<Time :time="1526608921" />
<Time :time="1652839997" />
2018-05-28 14:17:09 +08:00
<Time :time="ddd" :interval="1" />
2018-05-17 17:51:37 +08:00
</div>
</template>
<script>
export default {
data () {
2018-05-18 10:32:51 +08:00
return {
2018-05-28 14:15:43 +08:00
ddd: new Date('2019-05-28 14:12:00')
2018-05-18 10:32:51 +08:00
};
2018-05-17 17:51:37 +08:00
},
computed: {},
methods: {}
};
</script>