- 从 main 获取 single_uniapp22miao 子项目 - dart-sass: /deep/ -> ::v-deep,calc 运算符加空格 - DEPLOY.md 采用 shccd159 版本(4 子项目架构说明) Made-with: Cursor
27 lines
342 B
Vue
27 lines
342 B
Vue
<template>
|
|
<view class="webview-page">
|
|
<web-view :src="url"></web-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
url: ''
|
|
}
|
|
},
|
|
|
|
onLoad(options) {
|
|
this.url = decodeURIComponent(options.url || '');
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.webview-page {
|
|
height: 100vh;
|
|
}
|
|
</style>
|
|
|