auth.vue 315 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view class="">
  3. <web-view :src="src"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. name: '',
  9. data() {
  10. return {
  11. src: ''
  12. };
  13. },
  14. onLoad(options) {
  15. this.src = decodeURIComponent(options.url);
  16. },
  17. methods: {
  18. }
  19. };
  20. </script>
  21. <style lang="scss" scoped>
  22. </style>