Files
screen-shangdianke-uni/pages/home.vue

23 lines
246 B
Vue
Raw Normal View History

2024-08-23 13:22:50 +08:00
<template>
2024-08-26 09:56:43 +08:00
<view>
<web-view :src="url"></web-view>
2024-08-23 13:22:50 +08:00
</view>
</template>
<script>
export default {
data() {
return {
2024-08-26 09:56:43 +08:00
url: ''
2024-08-23 13:22:50 +08:00
};
2024-08-26 09:56:43 +08:00
},
onLoad (options) {
this.url = options.url
2024-08-23 13:22:50 +08:00
}
}
</script>
<style lang="stylus">
</style>