vue2-client 1.12.17 → 1.12.19
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
|
@@ -44,6 +44,18 @@ export default {
|
|
|
44
44
|
return null
|
|
45
45
|
},
|
|
46
46
|
},
|
|
47
|
+
setGlobalData: {
|
|
48
|
+
default: () => () => {
|
|
49
|
+
console.warn('setGlobalData is not provided.')
|
|
50
|
+
return null
|
|
51
|
+
},
|
|
52
|
+
},
|
|
53
|
+
getGlobalData: {
|
|
54
|
+
default: () => () => {
|
|
55
|
+
console.warn('getGlobalData is not provided.')
|
|
56
|
+
return null
|
|
57
|
+
},
|
|
58
|
+
},
|
|
47
59
|
getSelectedData: {
|
|
48
60
|
default: () => () => {
|
|
49
61
|
console.warn('getSelectedData is not provided.')
|