更新记录
1.0.9(2020-03-13) 下载此版本
修改3月切换2月bug
1.0.8(2020-01-22) 下载此版本
修复切换周bug
1.0.7(2020-01-22) 下载此版本
自动算高度
查看更多平台兼容性
前端关键代码
<template>
<view class="content">
<uni-calendar></uni-calendar>
</view>
</template>
<script>
import uniCalendar from '@/components/c-calendar.vue'
export default {
components: {
uniCalendar
},
data() {
return {
title: 'Hello'
}
},
onLoad() {
},
methods: {
}
}
</script>