1234567891011121314151617181920212223242526272829303132 |
- <template>
- <view>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- computed:{
- i18n(){
- return this.$t('index')
- }
- },
- methods: {
-
- },
- mounted(){
- uni.setNavigationBarTitle({
- title:this.i18n.address
- })
- },
- }
- </script>
- <style>
- </style>
|