12345678910111213141516171819202122232425 |
- <template>
- <view>
- <web-view :src="paths"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- paths:'',
- }
- },
- onLoad() {
- this.paths='https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=MjM5MTg2Mzc5Mw=='
- },
- methods: {
-
- }
- }
- </script>
- <style>
- </style>
|