22 lines
		
	
	
		
			288 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			288 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
| 	<view class="">
 | |
| 		<web-view :src="url"></web-view>
 | |
| 	</view>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| 	export default {
 | |
| 		data() {
 | |
| 			return {
 | |
| 				url: ''
 | |
| 			}
 | |
| 		},
 | |
| 		onLoad(item) {
 | |
| 			this.url = decodeURIComponent(item.url)
 | |
| 			console.log(this.url)
 | |
| 		}
 | |
| 	}
 | |
| </script>
 | |
| 
 | |
| <style lang="scss">
 | |
| </style> |