index.vue 322 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <!--防止滚动穿透-->
  3. <view>
  4. 321
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. title: '首页',
  12. }
  13. },
  14. computed: {
  15. },
  16. onLoad(options) {
  17. },
  18. methods: {
  19. handleRedirect(link) {
  20. this.src = link
  21. }
  22. },
  23. }
  24. </script>
  25. <style lang="scss">
  26. </style>