time.vue 342 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 <template> <div> <Time :time="1526608921" /> <Time :time="1652839997" /> <Time :time="ddd" /> </div> </template> <script> export default { data () { return { ddd: new Date('2018-01-01') }; }, computed: {}, methods: {} }; </script>