We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baa6b94 commit f3ba956Copy full SHA for f3ba956
1 file changed
src/component/wrapper/GoogleMaps.mjs
@@ -0,0 +1,24 @@
1
+import Base from '../../component/Base.mjs';
2
+
3
+/**
4
+ * @class Neo.component.wrapper.GoogleMaps
5
+ * @extends Neo.component.Base
6
+ */
7
+class GoogleMaps extends Base {
8
+ static getConfig() {return {
9
+ /**
10
+ * @member {String} className='Neo.component.wrapper.GoogleMaps'
11
+ * @protected
12
13
+ className: 'Neo.component.wrapper.GoogleMaps',
14
15
+ * @member {Object} _vdom
16
17
+ _vdom:
18
+ {}
19
+ }}
20
+}
21
22
+Neo.applyClassConfig(GoogleMaps);
23
24
+export default GoogleMaps;
0 commit comments