iview/examples/routers/time.vue

18 lines
342 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" />
<Time :time="ddd" />
2018-05-17 17:51:37 +08:00
</div>
</template>
<script>
export default {
data () {
2018-05-18 10:32:51 +08:00
return {
ddd: new Date('2018-01-01')
};
2018-05-17 17:51:37 +08:00
},
computed: {},
methods: {}
};
</script>