Files
2024-08-26 09:56:43 +08:00

23 lines
246 B
Vue

<template>
<view>
<web-view :src="url"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url: ''
};
},
onLoad (options) {
this.url = options.url
}
}
</script>
<style lang="stylus">
</style>