<template>
<view>
<web-view :src="url" ></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url: 'https://www.baidu.com/?tn=78000241_21_hao_pg'
}
},
onLoad(options) {
if (options && options.url) {
this.url = options.url;
}
}
}
</script>
<style>
</style>
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/index/new_file",
"style": {
"navigationBarTitleText": "uni-app"
}
}
],
"tabBar": {
"color": "#666666",
"selectedColor": "#ff0000",
"backgroundColor": "#ffffff",
"borderStyle": "black",
"list": [{
"pagePath": "pages/index/index",
"text": "首页"
},
{
"pagePath": "pages/index/new_file",
"text": "订阅"
}
]
},
0 个回复