luyoumin-ui 0.0.37 → 0.0.39
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 +8 -3
- package/dist/components/LymCheckBox.vue.d.ts +1 -1
- package/dist/components/generic-img/GenericImg.vue.d.ts +1 -1
- package/dist/luyoumin-ui.es.js +1 -3143
- package/dist/luyoumin-ui.umd.js +1 -8
- package/dist/style.css +1 -1
- package/package.json +4 -2
- package/src/global.d.ts +22 -1
- package/dist/global.d.ts +0 -18
package/README.md
CHANGED
|
@@ -8,6 +8,11 @@ This template should help get you started developing with Vue 3 and TypeScript i
|
|
|
8
8
|
|
|
9
9
|
- Use [vue-tsc](https://github.com/vuejs/language-tools/tree/master/packages/tsc) for performing the same type checking from the command line, or for generating d.ts files for SFCs.
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
使用说明:
|
|
12
|
+
npm引入之后,在项目的main.ts中通过以下操作导入组件:
|
|
13
|
+
import LymUi from 'luyoumin-ui';
|
|
14
|
+
import 'luyoumin-ui/dist/global.d'
|
|
15
|
+
import 'luyoumin-ui/dist/style.css';
|
|
16
|
+
const app = createApp(App);
|
|
17
|
+
app.use(LymUi);
|
|
18
|
+
app.mount("#app");
|
|
@@ -84,12 +84,12 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
84
84
|
}, {
|
|
85
85
|
modelValue: boolean;
|
|
86
86
|
label: string;
|
|
87
|
+
isIndeterminate: boolean;
|
|
87
88
|
disabled: boolean;
|
|
88
89
|
size: number;
|
|
89
90
|
labelSpace: string;
|
|
90
91
|
labelFontSize: string;
|
|
91
92
|
isCircle: boolean;
|
|
92
93
|
value: string;
|
|
93
|
-
isIndeterminate: boolean;
|
|
94
94
|
}, {}>;
|
|
95
95
|
export default _default;
|