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.
24 lines
379 B
24 lines
379 B
<!--
|
|
* @Author: ch
|
|
* @Date: 2022-07-12 17:19:59
|
|
* @LastEditors: ch
|
|
* @LastEditTime: 2022-07-12 18:35:24
|
|
* @Description: file content
|
|
-->
|
|
<template><view>
|
|
<web-view :src="url"></web-view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data (){
|
|
return {
|
|
url : ''
|
|
}
|
|
},
|
|
onLoad(){
|
|
this.url = decodeURIComponent(this.$Route.query.url)
|
|
console.log();
|
|
}
|
|
}
|
|
</script> |