Getting Started - Quasar

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/quasar

or

npm install @vue-js-cron/quasar

Then you need to register the component

// registers the component globally
// registered name: CronQuasar
import CronQuasarPlugin from '@vue-js-cron/quasar'
app.use(CronQuasarPlugin)

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

Done! 🚀


API

CronQuasar APIopen in new window

CronQuasarProps APIopen in new window

Contributors: abichinger