jhbigscreen/src/pages/index/map.vue

27 lines
416 B
Vue
Raw Normal View History

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