privacyPolicy.vue 320 B

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