npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-calendar-l

v1.0.8

Published

vue日历插件

Downloads

4

Readme

vue-calendar-l

vue日历组件 https://blog.csdn.net/qq_38188485/article/details/104134834

方法 select (选择日期) monthChanged  (滑动移动月份)

传入参数:

| 参数 | type | example | describe | | ------ | ---- | -------- | ---------- | | options | Object | {} | 日历颜色 | | value | Array | [“2019-02-01”] | 默认选择日期 | | begin | Array | [“2019-02-01”] | 开始选择日期 | | end | Array | [“2019-02-01”] | 结束选择日期 | | disabled | Array | [“2019-02-01”] | 屏蔽的日期 | | zero | Boolean | true | 是否小于10补零 | | weeks | Array | ["日", "一", "二", "三", "四", "五", "六"] | 自定义星期名称 | | months | Array | ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"] | 自定义月份名称 | | events | Array | [“2019-02-01-满”] | 自定义事件 (-最后是想要显示的字符  默认圆点) |

| options参数 | example | describe | | ------ | -------- | ---------- | | header_bg_color | "#ffffff" | 头部颜色 | | header_font_color | "#ffa300" | 头部字体颜色 | | week_font_color | "#333333" | 星期字体颜色 | | selected_bg_color | "#f49f19" | 选择的背景颜色 | | today_bg_color | "#f9d08f" | 今天背景颜色 | | event_dot_color | "#083ce4" | 时间下面点的颜色 |

npm包  npm install vue-calendar-l

在需要用到的页面中(注意 一个页面目前只能引入一次)

import Calendar from "vue-calendar-l";

components: { Calendar }

例子:

图片说明

效果:

图片说明