You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
342 B
22 lines
342 B
<template>
|
|
<niu-page inStyle="background: white;">
|
|
<niu-navbar bg="#FE504F" fixed color="white">
|
|
选择日期
|
|
</niu-navbar>
|
|
<TimeSelect></TimeSelect>
|
|
</niu-page>
|
|
</template>
|
|
|
|
<script>
|
|
import TimeSelect from "./TimeSelect.vue"
|
|
|
|
export default {
|
|
components: {
|
|
TimeSelect
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|
|
|