iview/examples/routers/time.vue
2018-06-29 15:15:49 +08:00

20 lines
No EOL
346 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()
};
},
computed: {},
methods: {}
};
</script>