no message

This commit is contained in:
2025-06-16 13:40:43 +08:00
commit e8166ef0f6
97 changed files with 1400 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<template>
<view>
<web-view :src="url"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url: ''
};
},
onLoad (options) {
this.url = options.url
}
}
</script>