Skip to content

Commit 3eff0b9

Browse files
committed
feat: add Naive UI support #26
1 parent 72052e1 commit 3eff0b9

21 files changed

+951
-4
lines changed

naive-ui/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.vscode
2+
node_modules
3+
dist

naive-ui/.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
access = "public"

naive-ui/README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
![Vue.js Cron Vuetify Hero](https://raw.githubusercontent.com/abichinger/vue-js-cron/main/assets/vue-js-cron-hero.png)
2+
3+
<p align="center">
4+
<em>generate cron expressions using vue.js</em>
5+
</p>
6+
7+
<p align="center">
8+
<a href="https://www.npmjs.com/package/@vue-js-cron/core">Core</a> |
9+
<a href="https://www.npmjs.com/package/@vue-js-cron/light">Light</a> |
10+
<a href="https://www.npmjs.com/package/@vue-js-cron/ant">Ant</a> |
11+
<a href="https://www.npmjs.com/package/@vue-js-cron/element-plus">Element Plus</a> |
12+
<a href="https://www.npmjs.com/package/@vue-js-cron/naive-ui">Naive UI</a> |
13+
<a href="https://www.npmjs.com/package/@vue-js-cron/quasar">Quasar</a> |
14+
<a href="https://www.npmjs.com/package/@vue-js-cron/vuetify">Vuetify</a>
15+
</p>
16+
17+
## Links - Naive UI
18+
19+
[Demo](https://abichinger.github.io/vue-js-cron/demo.html)
20+
21+
[Get Started](https://abichinger.github.io/vue-js-cron/guide/getting-started-naive-ui)
22+
23+
[CronNaive API](https://abichinger.github.io/vue-js-cron/typedoc/classes/_vue_js_cron_naive_ui.CronNaive)
24+
25+
[CronNaiveProps API](https://abichinger.github.io/vue-js-cron/typedoc/interfaces/_vue_js_cron_naive_ui.CronNaiveProps)
26+
27+
28+
## Attribution
29+
30+
This component is inspired by [react-js-cron](https://github.com/xrutayisire/react-js-cron) and [jqcron](https://github.com/arnapou/jqcron)

naive-ui/env.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/// <reference types="vite/client" />

naive-ui/index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<link rel="icon" href="/favicon.ico">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Vite App</title>
8+
</head>
9+
<body>
10+
<div id="app"></div>
11+
<script type="module" src="/src/main.ts"></script>
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)