article.vue 253 B

123456789101112131415161718192021
  1. <template>
  2. <view class="main">
  3. <web-view :src="url"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. onLoad(op) {
  9. this.url = op.url
  10. },
  11. data() {
  12. return {
  13. url: ""
  14. }
  15. },
  16. }
  17. </script>
  18. <style>
  19. </style>