feat:first commit

This commit is contained in:
2024-08-16 14:04:26 +08:00
commit f276677d09
72 changed files with 33361 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<template>
<web-view :src="url" allow :title="title" />
</template>
<script>
export default {
name: 'cusWebView',
data() {
return {
url: '',
title: ''
}
},
onLoad(options) {
this.url = decodeURIComponent(options?.url)
},
onReady() {
uni.setNavigationBarTitle({
title: this.title
})
}
}
</script>