iview/test/routers/date.vue

15 lines
308 B
Vue
Raw Normal View History

2016-12-12 20:34:28 +08:00
<template>
<div style="margin: 50px">
<date-picker style="width:200px" placeholder="请选择日期"></date-picker>
</div>
</template>
<script>
export default {
props: {},
data () {
return {}
},
computed: {},
methods: {}
}
</script>