You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
435 B
34 lines
435 B
<template>
|
|
<div class="container">
|
|
<iframe src="static/html/index.html" frameborder="0"></iframe>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
onLoad() {
|
|
window.toMap = this.toMap
|
|
},
|
|
methods: {
|
|
toMap() {
|
|
uni.navigateTo({
|
|
url: '/pages/map/map'
|
|
})
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
iframe {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
|
|
}
|
|
</style>
|