index.vue 355 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view class="content">
  3. <image class="logo" src="/static/logo.png"></image>
  4. <view class="text-area">
  5. <text class="title">{{title}}</text>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. title: 'Hello'
  14. }
  15. },
  16. onLoad() {
  17. },
  18. methods: {
  19. }
  20. }
  21. </script>
  22. <style scoped>
  23. </style>