
Security News
Opengrep Adds Apex Support and New Rule Controls in Latest Updates
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
@daypilot/daypilot-lite-vue
Advanced tools
DayPilot Lite for JavaScript is a library of scheduling components that can display calendar/scheduler UI:
This is the DayPilot Lite for Vue package.
Customize the scheduling components using an online UI Builder application and download a ready-to-run Vue project.
Vue Calendar with Day/Week/Month Views (Open-Source)
Create a complex calendar UI in Vue.js with multiple views, view-switching buttons and an integrated date picker. Use a shared data source to make it fast and Vue templates to define event appearance.
Vue Resource Calendar (Open-Source)
Use the Vue calendar component to display an interactive schedule for multiple resources.
Vue Calendar: Using Templates to Add Icons, Buttons, or Progress Bars to Events (Open-Source)
Vue templates allow adding dynamic content to Vue Calendar events, including interactive elements and custom Vue components.
Cell Templates in Vue Calendar: Display Slot Start Times, Sunrise & Sunset (Open-Source)
Use Vue templates to add custom content to calendar cells: text, icons, or even Vue components. Use v-if to display content only in the cells you choose.
Vue Monthly Calendar/Scheduler (Open-Source)
How to create a monthly calendar/scheduler view for planning events, tasks, and reminders in Vue. The downloadable Vue project uses the open-source DayPilot Lite library.
Vue.js Weekly Calendar Tutorial (Open-Source)
How to create a weekly calendar web application using a Vue calendar component. The tutorial includes a Vue.js project with JavaScript source code for download.
Vue Date Picker with Free/Busy Highlighting (Open-Source)
Use the Vue date picker component (Navigator) to change the current date. The date picker can highlight dates that already have events or are not available.
<template>
<DayPilotCalendar
viewType="Week"
:events="events"
:durationBarVisible="false"
:startDate="startDate"
:eventBorderRadius="5"
@timeRangeSelected="onTimeRangeSelected"
@eventMoved="onEventMoved"
@eventResized="onEventResized"
ref="calendarRef"
/>
</template>
<script setup>
import { DayPilot, DayPilotCalendar } from '@daypilot/daypilot-lite-vue';
import { ref, onMounted } from 'vue';
const startDate = ref("2025-02-28");
const events = ref([]);
const calendarRef = ref(null);
const onTimeRangeSelected = async (args) => {
const modal = await DayPilot.Modal.prompt("Create a new event:", "Event 1")
const calendar = args.control
calendar.clearSelection()
if (modal.canceled) { return }
calendar.events.add({
start: args.start,
end: args.end,
id: DayPilot.guid(),
text: modal.result
})
}
const onEventMoved = () => {
console.log("Event moved")
}
const onEventResized = () => {
console.log("Event resized")
}
const loadEvents = () => {
events.value = [
{
id: 1,
start: "2025-02-28T10:00:00",
end: "2025-02-28T11:00:00",
text: "Event 1",
backColor: "#6aa84faa",
borderColor: "#38761d",
},
{
id: 2,
start: "2025-02-28T13:00:00",
end: "2025-02-28T16:00:00",
text: "Event 2",
backColor: "#f1c232aa",
borderColor: "#bf9000",
},
]
};
onMounted(() => {
loadEvents()
})
</script>
The Theme Designer lets you create and download your own CSS theme using an online visual tool.
Apache License 2.0
FAQs
DayPilot Lite for Vue
The npm package @daypilot/daypilot-lite-vue receives a total of 218 weekly downloads. As such, @daypilot/daypilot-lite-vue popularity was classified as not popular.
We found that @daypilot/daypilot-lite-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
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.