Kalendar
Your best friend when it comes to event managment in Vue, React or Angular. This is the Vue version of this plugin.
Getting Started
- Install plugin from npm
npm install kalendar-vue -S
- Import plugin in your component
- Provide Appointments array. This array will be the source of the appointments which are rendered in the calendar.
Using Slots
The plugin can turn incredibly useful using scoped slots. You can customize all the essential parts of it.
Roadmap
- Improve performance
- Hard-code split value to 5mins, and use split-value-prop to only mark current_min%split-value-prop === 0
- Using upmentioned technique, day hours can be hardcoded into JSON, while the date part would come in from
for in
loop - This way, the rendering will be almost instant.
- Write docs
- Write unit-test
- Write the React version of this plugin
- Write the Angular version of this plugin