index.vue 239 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <text> {{ $t('me') }} </text>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {
  8. };
  9. },
  10. name: 'tabbar-mine',
  11. computed: {
  12. },
  13. props: {
  14. },
  15. methods: {
  16. }
  17. }
  18. </script>
  19. <style>
  20. </style>