result.vue 240 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view>
  3. <text>授权结果页</text>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. onLoad(options) {
  13. console.log(options);
  14. },
  15. methods: {
  16. }
  17. }
  18. </script>
  19. <style>
  20. </style>