chartMap.vue 439 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <div class="iframe-wrap">
  3. <iframe id="mapFrame" ref="mapFrame" src="http://localhost:14000/gis/" frameborder="none"/>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'ChartMap',
  9. created() {
  10. window['is'] = this
  11. window['mapFrame'] = this.$refs.mapFrame
  12. }
  13. }
  14. </script>
  15. <style scoped lang="scss">
  16. .iframe-wrap {
  17. width: 100%;
  18. height: 100%;
  19. iframe {
  20. width: 100%;
  21. height: 100%;
  22. }
  23. }
  24. </style>