Skip to content

Commit f2bcbe6

Browse files
committed
docs: add ant and quasar to list of components
1 parent 038de64 commit f2bcbe6

File tree

1 file changed

+47
-1
lines changed

1 file changed

+47
-1
lines changed

docs/src/guide/getting-started.md

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33
The fastest way to get started, is to install one of the prebuilt components.
44
For now `vue-js-cron` provides the following prebuilt components:
55
- [cron-light](#light) - a lightweight cron editor without external dependencies
6-
- [cron-vuetify](#vuetify) - a cron editor for [Vuetify.js](https://next.vuetifyjs.com/en/).
6+
- [cron-vuetify](#vuetify) - a cron editor for [Vuetify.js](https://next.vuetifyjs.com/en/)
77
- [cron-element-plus](#element-plus) - cron editor for [Element Plus](https://element-plus.org/en-US/)
8+
- [cron-ant](#ant) - a cron editor for [Ant Design Vue](https://antdv.com/)
9+
- [cron-quasar](#quasar) - a cron editor for [Quasar](https://quasar.dev/)
810

911
If you would like to use a different UI framework, follow the quick start guide on how to use the [renderless component](#renderless).
1012

@@ -177,6 +179,50 @@ Now you can use the `cron-ant` component.
177179

178180
- [cron-ant](../api/ant)
179181

182+
## Quasar
183+
184+
### Requirements
185+
186+
- [Quasar](https://quasar.dev/start)
187+
188+
### Installation
189+
190+
Open up a terminal and run the following command:
191+
192+
```bash
193+
yarn add @vue-js-cron/quasar@latest
194+
```
195+
or
196+
197+
```bash
198+
npm install @vue-js-cron/quasar@latest
199+
```
200+
201+
Then you need to register `@vue-js-cron/quasar` with `app.use()`
202+
203+
```js
204+
import cronQuasar from '@vue-js-cron/quasar'
205+
app.use(cronQuasar)
206+
```
207+
208+
Now you can use the `cron-quasar` component.
209+
210+
<br />
211+
212+
<!--
213+
### Example
214+
215+
@[code](../.vuepress/components/get-started-ant.vue)
216+
217+
**Result:**
218+
<get-started-ant />
219+
220+
### API
221+
222+
- [cron-ant](../api/ant)
223+
224+
-->
225+
180226
## Renderless
181227

182228
This guide will explain how to use the renderless component of vue-js-cron.

0 commit comments

Comments
 (0)