新增了多个静态图片资源文件,包括01.png、02.png等,并添加了相关的配置文件和组件,如vue.config.js、package.json等。同时引入了Tuniao UI库,并配置了相关的依赖和设置,以支持项目的开发和构建。
27 lines
338 B
Vue
27 lines
338 B
Vue
<template>
|
|
<view>
|
|
<web-view bindmessage="bindmessage" :src="url"></web-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
url: ''
|
|
}
|
|
},
|
|
onLoad(options) {
|
|
console.log(options);
|
|
var kkk = decodeURIComponent(options.url);
|
|
this.url = kkk;
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style> |