ThePublicNumber.vue 314 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view>
  3. <web-view :src="paths"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. paths:'',
  11. }
  12. },
  13. onLoad() {
  14. this.paths='https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=MjM5MTg2Mzc5Mw=='
  15. },
  16. methods: {
  17. }
  18. }
  19. </script>
  20. <style>
  21. </style>