next-element-vue 0.6.1 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +70 -16
- package/dist/index.js +3 -3
- package/dist/packages/components/labelme/src/core/CreateRectangle.d.ts +29 -0
- package/dist/packages/components/labelme/src/core/EditPolygon.d.ts +1 -0
- package/dist/packages/components/labelme/src/hooks/canvas-content-hook.d.ts +6 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,30 +1,57 @@
|
|
|
1
|
+
<!-- markdownlint-disable MD033 -->
|
|
1
2
|
<h1 align="center">
|
|
2
3
|
<b>
|
|
3
|
-
<a href="https://junehunter.github.io/next-element-vue" target="_blank"><img height="100px" src="https://junehunter.github.io/next-element-vue/logo.svg" /></a><br>
|
|
4
|
+
<a href="https://junehunter.github.io/next-element-vue" target="_blank"><img height="100px" src="https://junehunter.github.io/next-element-vue/logo.svg" alt="next-element-vue" /></a><br>
|
|
4
5
|
</b>
|
|
5
6
|
</h1>
|
|
6
|
-
<p align="center"
|
|
7
|
+
<p align="center">🚀基于Element Plus封装的高级组件库,快速、灵活配置搭建你的应用</p>
|
|
7
8
|
<p align="center">
|
|
8
|
-
<a href="https://
|
|
9
|
-
|
|
9
|
+
<a href="https://npmmirror.com/package/next-element-vue" target="_blank">
|
|
10
|
+
<img src="https://img.shields.io/npm/v/next-element-vue?color=42b883&label=pnpm" alt="pnpm version">
|
|
11
|
+
</a>
|
|
12
|
+
<a href="https://www.npmjs.com/package/next-element-vue" target="_blank">
|
|
13
|
+
<img src="https://img.shields.io/npm/v/next-element-vue?color=42b883&label=npm" alt="npm version">
|
|
14
|
+
</a>
|
|
15
|
+
<a href="https://www.npmjs.com/package/next-element-vue" target="_blank">
|
|
16
|
+
<img src="https://img.shields.io/npm/dm/next-element-vue.svg?style=flat" alt="downloads">
|
|
17
|
+
</a>
|
|
18
|
+
<a href="https://github.com/junehunter/next-element-vue/blob/main/LICENSE" target="_blank">
|
|
19
|
+
<img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="license">
|
|
20
|
+
</a>
|
|
10
21
|
</p>
|
|
22
|
+
<p align="center">
|
|
23
|
+
<a href="https://junehunter.github.io/next-element-vue" target="_blank"><b> 🌐 Website</b></a>
|
|
24
|
+
<a href="https://junehunter.github.io/next-element-vue" target="_blank"><b> 📘 Documentation</b></a>
|
|
25
|
+
<a href="https://github.com/junehunter/next-element-vue/issues" target="_blank"><b> 💬 Issues</b></a>
|
|
26
|
+
</p>
|
|
27
|
+
|
|
28
|
+
## ✨ 特性
|
|
11
29
|
|
|
12
|
-
|
|
30
|
+
- 📦 开箱即用:基于 Element Plus 二次封装,统一设计风格
|
|
31
|
+
- ⚡ 高效开发:丰富的业务组件,减少重复工作
|
|
32
|
+
- 🎨 灵活配置:支持按需加载、主题定制、多语言
|
|
33
|
+
- 🛠️ 最佳实践:内置 Vue Router / i18n / VueUse 支持
|
|
34
|
+
- 🤖 AI 标注支持:内置图片/文本/音视频标注工具,轻松集成到 AI 训练流程
|
|
35
|
+
|
|
36
|
+
## 📦 安装
|
|
37
|
+
|
|
38
|
+
> node 版本建议 >= 20
|
|
39
|
+
> pnpm 版本建议 >= 10.x
|
|
13
40
|
|
|
14
41
|
```shell
|
|
15
|
-
|
|
42
|
+
|
|
16
43
|
# pnpm
|
|
17
44
|
$ pnpm add next-element-vue
|
|
18
|
-
|
|
19
45
|
# Yarn
|
|
20
46
|
$ yarn add next-element-vue
|
|
21
|
-
|
|
22
47
|
# NPM
|
|
23
48
|
$ npm install next-element-vue --save
|
|
24
49
|
```
|
|
25
50
|
|
|
26
|
-
## 快速开始
|
|
27
|
-
|
|
51
|
+
## 🚀 快速开始
|
|
52
|
+
|
|
53
|
+
### 完整引入
|
|
54
|
+
|
|
28
55
|
```typescript
|
|
29
56
|
import { createApp } from 'vue';
|
|
30
57
|
import App from './App/vue';
|
|
@@ -34,13 +61,40 @@ import 'element-plus/dist/index.css';
|
|
|
34
61
|
import NextElement from 'next-element-vue';
|
|
35
62
|
import 'next-element-vue/dist/index.css';
|
|
36
63
|
|
|
37
|
-
const app = createApp(App)
|
|
38
|
-
app.use(ElementPlus)
|
|
39
|
-
app.use(NextElement)
|
|
40
|
-
app.mount('#app')
|
|
64
|
+
const app = createApp(App);
|
|
65
|
+
app.use(ElementPlus);
|
|
66
|
+
app.use(NextElement);
|
|
67
|
+
app.mount('#app');
|
|
41
68
|
```
|
|
42
69
|
|
|
70
|
+
---
|
|
71
|
+
|
|
72
|
+
🎬 AI视频识别
|
|
73
|
+
|
|
74
|
+

|
|
75
|
+
|
|
76
|
+
🖼️ labelimg标注
|
|
77
|
+
|
|
78
|
+

|
|
79
|
+
|
|
80
|
+
🖼️ labelme标注
|
|
81
|
+
|
|
82
|
+

|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
|
|
86
|
+
## 📚 文档
|
|
87
|
+
|
|
88
|
+
👉 [完整文档](https://junehunter.github.io/next-element-vue)
|
|
89
|
+
|
|
90
|
+
## 🧩 生态支持
|
|
91
|
+
|
|
92
|
+
- ✅ Element Plus: UI 基础组件
|
|
93
|
+
- ✅ Vue Router: 内置路由支持
|
|
94
|
+
- ✅ Vue I18n: 国际化解决方案
|
|
95
|
+
- ✅ VueUse: 常用 hooks 工具库
|
|
96
|
+
- ✅ AI 工具集成: 内置图片/文本/音视频标注能力
|
|
43
97
|
|
|
98
|
+
## 📄 License
|
|
44
99
|
|
|
45
|
-
|
|
46
|
-
**持续更新中...**
|
|
100
|
+
[MIT](https://github.com/junehunter/next-element-vue/blob/main/LICENSE)
|