week-swiper fro taro


Keywords
taro-swiper-week, week-swiper
License
ISC
Install
npm install taro-swiper-week@0.0.1-beta.7

Documentation

taro-swiper-week



taro-swiper-week 是一个基于 taro 的日期选择器控件。
可以用在h5、微信小程序等众多平台!

img

简体中文 | English

🔨 使用

先安装

npm install taro-swiper-week

再引入页面

import SwiperWeek from "taro-swiper-week";
import { View } from "@tarojs/components";
import { useState } from "react";

export default () => {
  const [day, setDay] = useState("2022-08-11");
  const onChange = val => {
    setDay(val);
  };
  return (
    <>
      <SwiperWeek value={day} onChange={onChange} />
      <View>选中日期:{day}</View>
    </>
  );
};

🍭 配置项

参数 说明 类型 默认
value 初始值 string 今天
hideNickname 隐藏日期别名,如昨天、明天 boolean true
onChange 日期选择回调 function(value) -