index.vue 501 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <view class="content">
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. data() {
  8. return {
  9. title: 'Hello',
  10. // plus:{
  11. // android:{
  12. // hardwareAccelerated: true,
  13. // useDefaultIndicator: true,
  14. // supportMultipleWindows: true,
  15. // setSupportMultipleWindows: true
  16. // }
  17. // }
  18. }
  19. },
  20. onLoad() {
  21. uni.navigateTo({
  22. url: '/pages/web-view/web-view'
  23. })
  24. },
  25. methods: {
  26. }
  27. }
  28. </script>
  29. <style>
  30. </style>