Skip to content

Commit 2f2598e

Browse files
committed
VueUiIcon create component
1 parent 2a74c15 commit 2f2598e

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
![GitHub issues](https://img.shields.io/github/issues/graphieros/vue-data-ui)
1515
![NPM](https://img.shields.io/npm/l/vue-data-ui)
1616
![npm](https://img.shields.io/npm/dt/vue-data-ui)
17-
![Static Badge](https://img.shields.io/badge/components-30-green)
17+
![Static Badge](https://img.shields.io/badge/components-31-green)
1818

1919
[Interactive documentation](https://vue-data-ui.graphieros.com/)
2020

@@ -62,6 +62,7 @@ Available components:
6262
- [VueUiSkeleton](https://vue-data-ui.graphieros.com/docs#vue-ui-skeleton)
6363
- [VueUiDashboard](https://vue-data-ui.graphieros.com/docs#vue-ui-dashboard)
6464
- [VueUiAnnotator](https://vue-data-ui.graphieros.com/docs#vue-ui-annotator)
65+
- [VueUiIcon](https://vue-data-ui.graphieros.com/docs#vue-ui-icon)
6566

6667
# Installation
6768
```

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vue-data-ui",
33
"private": false,
4-
"version": "1.9.39",
4+
"version": "1.9.40",
55
"type": "module",
66
"description": "A user-empowering data visualization Vue components library",
77
"keywords": [

src/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ import VueUiRings from "./components/vue-ui-rings.vue";
2828
import VueUiWheel from "./components/vue-ui-wheel.vue";
2929
import VueUiTiremarks from "./components/vue-ui-tiremarks.vue";
3030
import VueUiDonutEvolution from "./components/vue-ui-donut-evolution.vue";
31+
import VueUiIcon from "./atoms/BaseIcon.vue";
3132

3233
export {
3334
VueUiXy,
@@ -59,5 +60,6 @@ export {
5960
VueUiRings,
6061
VueUiWheel,
6162
VueUiTiremarks,
62-
VueUiDonutEvolution
63+
VueUiDonutEvolution,
64+
VueUiIcon
6365
};

src/main.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ import {
3232
VueUiWheel,
3333
VueUiTiremarks,
3434
VueUiDonutEvolution,
35+
VueUiIcon
3536
} from 'vue-data-ui';
3637
import 'vue-data-ui/style.css';
3738

@@ -66,4 +67,5 @@ app.component("VueUiRings", VueUiRings);
6667
app.component("VueUiWheel", VueUiWheel);
6768
app.component("VueUiTiremarks", VueUiTiremarks);
6869
app.component("VueUiDonutEvolution", VueUiDonutEvolution);
70+
app.component("VueUiIcon", VueUiIcon);
6971
app.mount('#app');

0 commit comments

Comments
 (0)