@jspreadsheet/vue 9.4.7 → 9.4.8
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/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3,11 +3,11 @@ import jspreadsheet from "jspreadsheet";
|
|
|
3
3
|
import "jspreadsheet/dist/jspreadsheet.css";
|
|
4
4
|
import "jsuites/dist/jsuites.css";
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
const Worksheet = {
|
|
7
7
|
name: "Worksheet"
|
|
8
8
|
};
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
const Spreadsheet = {
|
|
11
11
|
name: "Spreadsheet",
|
|
12
12
|
setup(props, { attrs, slots }) {
|
|
13
13
|
const spreadsheet = ref(null);
|
|
@@ -50,7 +50,7 @@ export const Spreadsheet = {
|
|
|
50
50
|
template: `<div ref="spreadsheet" />`
|
|
51
51
|
};
|
|
52
52
|
|
|
53
|
-
export {
|
|
53
|
+
export default {
|
|
54
54
|
Spreadsheet,
|
|
55
55
|
Worksheet,
|
|
56
56
|
jspreadsheet
|
package/package.json
CHANGED