index.vue 251 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view class="content">
  3. 首页
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. title: 'Hello'
  11. }
  12. },
  13. onLoad() {
  14. },
  15. methods: {
  16. }
  17. }
  18. </script>
  19. <style lang="scss" scoped>
  20. .content {
  21. }
  22. </style>