index.vue 309 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view class="content">
  3. 首页
  4. </view>
  5. </template>
  6. <script>
  7. import md5 from "@/common/md5.js";
  8. export default {
  9. components: {
  10. },
  11. data() {
  12. return {
  13. };
  14. },
  15. onLoad() {
  16. },
  17. onShow() {
  18. },
  19. methods: {
  20. },
  21. };
  22. </script>
  23. <style lang="scss" scoped>
  24. .content {
  25. }
  26. </style>