Getting Started - PrimeVue

The fastest way to get started, is to use one of the prebuilt components.

Requirements

Make sure to install and setup all requirements.

Installation

Open up a terminal and run the following command:

yarn add @vue-js-cron/prime

or

npm install @vue-js-cron/prime

Then you need to register the component

import '@vue-js-cron/prime/dist/prime.css'

// registers the component globally
// registered name: CronPrime
import CronPrimePlugin from '@vue-js-cron/prime'
app.use(CronPrimePlugin)

// alternatively you can also register the component yourself
// https://vuejs.org/guide/components/registration.html
import { CronPrime } from '@vue-js-cron/prime'
app.component('CronPrime', CronPrime)

Done! 🚀


API

CronPrime APIopen in new window

CronPrimeProps APIopen in new window

Contributors: Andreas Bichinger