jhbigscreen/src/pages/index/map.vue

27 lines
416 B
Vue

<template>
<div id="index-map" style="width: 100%;height:100%;">
<iframe src="maps/home.html" style="width: 100%;height:100%;border:none;" frameborder="0"></iframe>
</div>
</template>
<script>
export default {
name: 'JhbigscreenMap',
data() {
return {
};
},
mounted() {
},
methods: {
},
};
</script>
<style lang="scss" scoped></style>