psaren / taro-ui-vue

UI KIT for Taro/vue
MIT License
206 stars 38 forks source link

小程序高级组件AtCalendar问题 #120

Open zhouxuehao opened 3 years ago

zhouxuehao commented 3 years ago

问题描述

复现步骤

<template>
  <view class="calendar_page">
    <AtCalendar
      minDate="2021/01/01"
      maxDate="2021/06/01"
      isVertical
      :hideArrow="true"
    />
  </view>
</template>

<script>
import { AtCalendar } from "taro-ui-vue";
export default {
  components: {
    AtCalendar,
  },
  data() {
    return {
    };
  },
  computed: {},
  onShow() {},
  created() {
  },
  mounted() {},
  methods: {},
};
</script>

<style lang="scss">
@import "~taro-ui-vue/dist/style/components/calendar.scss";
page {
  background: #fafbfc;
  height: 100%;
  width: 100%;
}
.calendar_page {
  height: 100%;
  width: 100%;
}
</style>

期望行为

报错信息

image 系统信息 image

补充信息

兼容小程序 最大时间和最小时间限时未生效 不支持全屏幕滑动