emacroh5lib 1.0.4 → 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/package.json
CHANGED
@@ -1,9 +1,8 @@
|
|
1
1
|
{
|
2
2
|
"name": "emacroh5lib",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.7",
|
4
4
|
"description": "EMacro前端组件库",
|
5
|
-
"main": "
|
6
|
-
"types": "./dist/types/index.d.ts",
|
5
|
+
"main": "src/index.ts",
|
7
6
|
"scripts": {
|
8
7
|
"build": "webpack --mode=production --node-env=production",
|
9
8
|
"build:dev": "webpack --mode=development",
|
package/src/index.ts
CHANGED
@@ -7,7 +7,7 @@ import ImageViewer from './views/ImageViewer/index.vue'
|
|
7
7
|
import DragResizeView from './views/DragResizeView/index.vue'
|
8
8
|
import MessageBoxTest from "@/components/MessageBoxTest";
|
9
9
|
|
10
|
-
const components = [FileViewer, ImageViewer
|
10
|
+
const components = [FileViewer, ImageViewer];
|
11
11
|
|
12
12
|
const install = (Vue: any) => {
|
13
13
|
if ((install as any).installed) return;
|
@@ -22,22 +22,12 @@ if (typeof window !== 'undefined' && (window as any).Vue) {
|
|
22
22
|
install((window as any).Vue);
|
23
23
|
}
|
24
24
|
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
25
|
+
|
29
26
|
// import HelloWorld from "@/components/HelloWorld.vue";
|
30
27
|
// import HelloWorld from "@/components/index";
|
31
28
|
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
29
|
+
|
40
30
|
|
41
31
|
|
42
32
|
export default {}
|
43
|
-
export { EMacro,
|
33
|
+
export { EMacro, ImageViewer, DragResizeView }
|
@@ -7,9 +7,7 @@
|
|
7
7
|
</template>
|
8
8
|
|
9
9
|
<script lang="ts">
|
10
|
-
|
11
|
-
|
12
|
-
|
10
|
+
|
13
11
|
import { Component, Prop, Vue } from "vue-property-decorator";
|
14
12
|
|
15
13
|
import $ from "jquery";
|
@@ -39,7 +37,7 @@ export default class ExcelExporter extends Vue {
|
|
39
37
|
{ a: "面料类", b: "26500", c: "12063", d: "45.5%" },
|
40
38
|
{ a: "面料类", b: "36500", c: "12063", d: "45.5%" },
|
41
39
|
{ a: "面料类", b: "46500", c: "12063", d: "45.5%" },
|
42
|
-
{ a: "面料类", b: "56500", c: "12063", d: "45.5%" },
|
40
|
+
{ a: "面料类11", b: "56500", c: "12063", d: "45.5%" },
|
43
41
|
],
|
44
42
|
};
|
45
43
|
|