document.vue 236 B

12345678910111213141516171819202122
  1. <template>
  2. <view>
  3. <web-view :src="url"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. url:'http://microapp.gitee.io/linjiashop/'
  11. }
  12. },
  13. methods: {
  14. }
  15. }
  16. </script>
  17. <style>
  18. </style>