初始化仓库

This commit is contained in:
wangxiaowei
2026-04-14 16:54:04 +08:00
commit 967c25b397
553 changed files with 106514 additions and 0 deletions

22
pages/webview/webview.vue Normal file
View File

@ -0,0 +1,22 @@
<template>
<view class="page-body">
<web-view :src="url"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url: ''
};
},
onLoad: function(options) {
this.url = this.$Route.query.url
},
methods: {}
};
</script>
<style>
</style>