erp-plus 1.0.5 → 1.0.7

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 CHANGED
@@ -1,5 +1,44 @@
1
- # Vue 3 + TypeScript + Vite
1
+ ERP Plus 组件封装库
2
+ 基于 Element Plus 进行二次封装的组件库,提供更高级的组件抽象和业务场景适配。
2
3
 
3
- This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
4
+ 🚀 特性
5
+ ✅ 基于 Element Plus 2.x 版本
4
6
 
5
- Learn more about the recommended Project Setup and IDE Support in the [Vue Docs TypeScript Guide](https://vuejs.org/guide/typescript/overview.html#project-setup).
7
+ 📦 开箱即用,简化复杂组件使用
8
+
9
+ 🎨 统一的样式和交互规范
10
+
11
+ 🔧 高度可配置和可扩展
12
+
13
+ 📱 响应式设计,支持移动端
14
+
15
+ 🌐 TypeScript 支持
16
+
17
+ 🎯 业务场景优化
18
+
19
+ 📦 安装
20
+ # 使用 npm
21
+ npm install erp-plus
22
+
23
+ # 使用 yarn
24
+ yarn add erp-plus
25
+
26
+ # 使用 pnpm
27
+ pnpm add erp-plus
28
+
29
+ 🔧 快速开始
30
+
31
+ 全局引入
32
+ import { createApp } from 'vue'
33
+
34
+ import App from './App.vue'
35
+
36
+ import ErpPlus from 'erp-plus'
37
+
38
+ import 'erp-plus/dist/index.css'
39
+
40
+ const app = createApp(App)
41
+
42
+ app.use(ErpPlus)
43
+
44
+ app.mount('#app')
@@ -1,3 +1,3 @@
1
1
  import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
- declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
3
  export default _default;