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.
31 lines
453 B
31 lines
453 B
<template>
|
|
<view @click="$u.throttle(toAnswer)">
|
|
<iframe src="static/html/explanation.html" frameborder="0"></iframe>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
methods: {
|
|
toAnswer () {
|
|
uni.navigateTo({
|
|
url: '/pages/answer/answer'
|
|
})
|
|
}
|
|
},
|
|
onLoad() {
|
|
window.toAnswer = this.toAnswer
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
iframe {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
}
|
|
</style>
|