tdt-map-vue2 0.1.1 → 0.1.2
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/CHANGELOG.md +6 -0
- package/index.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import EnnTMap from './lib/BaseMap.vue'
|
|
2
2
|
import { setTk } from './lib/utils/config'
|
|
3
|
+
import installMap from './lib/utils/installMap'
|
|
3
4
|
|
|
4
5
|
const installTMap = {
|
|
5
6
|
install(app,option) {
|
|
@@ -8,4 +9,4 @@ const installTMap = {
|
|
|
8
9
|
app.component('EnnTMap', EnnTMap)
|
|
9
10
|
}
|
|
10
11
|
}
|
|
11
|
-
export { installTMap as default, EnnTMap }
|
|
12
|
+
export { installTMap as default, EnnTMap, installMap }
|