0.0.8 • Published 2 years ago

t-vc-c v0.0.8

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

⚠️ DO NOT USE THIS PACKAGE. IT IS TESTING PACKAGE, IT WILL BE REMOVE IN THE FUTURE ⚠️

Calendar for Vue 3 (TS support)

TestSchedule calendar component for Vue 3

Functional

✅ View events per week

✅ Switch displayed week

✅ Display current time marker on timeline

Installation

  1. Install package npm install testschedule
  2. Add plugin and style to your Vue 3 app in main.js or main.ts file and set use the plugin.
import  TestSchedule  from  'testschedule'
import "testschedule/dist/style.css"

// ...
app.use(TestSchedule)
// ...

Usage

Define <TestSchedule> component in your template and pass array of events into it.

<template>
  <TestSchedule
    :events="[{ id:  1, title:  'Meeting', startDate:  '2023-09-16 10:00', endDate:  '2023-09-16 11:00' }, { id:  2, title:  'English lesson', startDate:  '2023-09-16 16:00', endDate:  '2023-09-16 18:30', metadata: {} }]"
  ></TestSchedule>
</template>

Props

Events

Slots

Customisation

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago