Gathering detailed insights and metrics for vue3-datepicker-lite
Gathering detailed insights and metrics for vue3-datepicker-lite
Gathering detailed insights and metrics for vue3-datepicker-lite
Gathering detailed insights and metrics for vue3-datepicker-lite
npm install vue3-datepicker-lite
Typescript
Module System
Node Version
NPM Version
46.1
Supply Chain
97.9
Quality
77.1
Maintenance
100
Vulnerability
100
License
Vue (88.51%)
HTML (9.54%)
TypeScript (1.11%)
JavaScript (0.83%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
35 Stars
48 Commits
11 Forks
3 Watchers
1 Branches
4 Contributors
Updated on Oct 30, 2024
Latest Version
1.9.7
Package Id
vue3-datepicker-lite@1.9.7
Unpacked Size
91.41 kB
Size
17.97 kB
File Count
17
NPM Version
10.5.0
Node Version
21.7.3
Published on
Oct 30, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
A simple datepicker component support Vue3.0!!
import DatepickerLite from "vue3-datepicker-lite";
import DatepickerLite from "vue3-datepicker-lite/ts"; // TypeScript
<datepicker-lite
:id-attr="datepickerSetting.id"
:name-attr="datepickerSetting.name"
:class-attr="datepickerSetting.class"
:value-attr="datepickerSetting.value"
:placeholder-attr="datepickerSetting.placeholder"
:is-button-type="datepickerSetting.isButtonType"
:year-minus="datepickerSetting.yearMinus"
:years-range="100"
:from="datepickerSetting.fromDate"
:to="datepickerSetting.toDate"
:disabled-date="datepickerSetting.disabledDate"
:locale="datepickerSetting.locale"
@value-changed="datepickerSetting.changeEvent"
:disable-input="datepickerSetting.disableInput"
:show-bottom-button="true"
></datepicker-lite>
const datepickerSetting = {
id: "birthday",
name: "birthday",
class: "myDateInput",
value: "2020/10/01",
placeholder: "Select",
isButtonType: false,
yearMinus: 0,
fromDate: "2020/02/10",
toDate: "2021/02/10",
disabledDate: [
"2020/10/02",
"2020/10/03",
"2020/10/04",
"2020/10/05",
"2020/10/06",
],
locale: {
format: "YYYY/MM/DD",
weekday: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
months: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"],
startsWeeks: 0,
todayBtn: "Today",
clearBtn: "Clear",
closeBtn: "Close",
},
changeEvent: (value) => {
console.log(value + " selected!");
},
disableInput: false,
}
ver 1.9.7 : fixed bugs. ref #21, #22
ver 1.9.6 : changed import file for TypeScript
ver 1.9.5 : fixed wrong path on index.js
ver 1.9.4 : fixed bugs. ref #20
ver 1.9.3 : removed `core-js` and added `index.d.ts` and no includes `compiler-core.esm-bundler.js`
ver 1.9.2 : fixed bugs
ver 1.9.1 : added auto-complate slash in the input field
ver 1.9.0 : added show-bottom-button option and years-range option
ver 1.8.9 : added months-option on locale-options
ver 1.8.8 : added switch to button-type option
ver 1.8.7 : added autocomplated off option
ver 1.8.6 : fixed datepicker on window bottom will be over window height bug
ver 1.8.5 : fixed locale attribute bug
ver 1.8.4 : supported start weeks option
ver 1.8.3 : fixed disabledDate not work bug
ver 1.8.2 : fixed valueAttr can not to be null bug
ver 1.8.1 : supported placeholder
ver 1.8.0 : supported value-attr responsive
ver 1.7.0 : supported disable input
ver 1.6.0 : supported date format
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 4/27 approved changesets -- score normalized to 1
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
11 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More