
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
@weektime-picker/vue
Advanced tools
A flexible week time grid component for Vue React applications.
@weektime-picker/vue - Vue 3 componentnpm install @weektime-picker/vue
or
pnpm add @weektime-picker/vue

<template>
<WeekTimeGrid
:selectedRanges="selectedRanges"
@selectedRangesChange="handleSelectedRangesChange"
:startHour="9"
:endHour="18"
:timeInterval="60"
/>
</template>
<script setup>
import { ref } from "vue";
import { WeekTimeGrid } from "@weektime-picker/vue";
const selectedRanges = ref([]);
const handleSelectedRangesChange = (ranges) => {
selectedRanges.value = ranges;
};
</script>
| Prop | Type | Default | Description |
|---|---|---|---|
selectedRanges | TimeRange[] | [] | Array of selected time ranges |
onSelectedRangesChange (React) / @selectedRangesChange (Vue) | Function | - | Callback when selection changes |
startHour | number | 0 | Start hour (0-23) |
endHour | number | 24 | End hour (1-24) |
timeInterval | number | 60 | Time interval in minutes (15, 30, 60) |
themeColor | string | '#4a89dc' | Theme color for selected cells |
dayLabels | string[] | ['周一', '周二', ...] | Custom day labels |
interface TimeRange {
day: number; // 0-6 (Monday to Sunday)
startTime: number; // Start time in minutes from 00:00
endTime: number; // End time in minutes from 00:00
}
MIT
FAQs
Week time grid component for Vue 3
The npm package @weektime-picker/vue receives a total of 2 weekly downloads. As such, @weektime-picker/vue popularity was classified as not popular.
We found that @weektime-picker/vue demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.