iview/examples/routers/time.vue

20 lines
394 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-06-29 15:15:49 +08:00
2018-07-03 13:59:12 +08:00
<Time time="2018-06-20T13:09:14.000Z" />
2018-05-17 17:51:37 +08:00
</div>
</template>
<script>
export default {
data () {
2018-05-18 10:32:51 +08:00
return {
2018-06-29 15:15:49 +08:00
ddd: new Date()
2018-05-18 10:32:51 +08:00
};
2018-05-17 17:51:37 +08:00
},
computed: {},
methods: {}
};
</script>