index.vue 252 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view>
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. data() {
  8. return {
  9. }
  10. },
  11. onLoad(data) {
  12. uni.showToast({
  13. title: "开发中",
  14. icon: "none",
  15. });
  16. },
  17. methods: {
  18. }
  19. }
  20. </script>
  21. <style>
  22. </style>