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.
25 lines
551 B
25 lines
551 B
<template>
|
|
<view>
|
|
<calendar ref="calendar"/>
|
|
<PageBottomBtn :showCancel="false" text="返回" @click="gotoHome"></PageBottomBtn>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
import PageBottomBtn from '@/components/pageBottomBtn.vue'
|
|
|
|
import calendar from '@/components/calendar.vue'
|
|
|
|
export default {
|
|
options: { styleIsolation: "shared" },
|
|
components: {
|
|
calendar,
|
|
PageBottomBtn
|
|
},
|
|
methods:{
|
|
gotoHome(){
|
|
let url = `/pages/home/index`
|
|
this.$nav.navToPath(url)
|
|
}
|
|
}
|
|
}
|
|
</script>
|