addressManagement.vue 308 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view>
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. data() {
  8. return {
  9. }
  10. },
  11. computed:{
  12. i18n(){
  13. return this.$t('index')
  14. }
  15. },
  16. methods: {
  17. },
  18. mounted(){
  19. uni.setNavigationBarTitle({
  20. title:this.i18n.address
  21. })
  22. },
  23. }
  24. </script>
  25. <style>
  26. </style>