iview/examples/routers/time.vue

14 lines
220 B
Vue
Raw Normal View History

2018-05-17 17:51:37 +08:00
<template>
<div>
2018-05-17 18:27:34 +08:00
<Time :time="1526552777" />
2018-05-17 17:51:37 +08:00
</div>
</template>
<script>
export default {
data () {
return {};
},
computed: {},
methods: {}
};
</script>