bitcooo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

43 lines
525 B

<template>
<view class="">
<navigation :showBack="true">
{{i18n.TermsofService}}
</navigation>
<view class="con">
<view class="main">
{{i18n.TermsofServiceTxt}}
</view>
</view>
</view>
</template>
<script>
import cont from "@/components/navigation/navigation.vue"
export default {
data() {
return {
};
},
methods: {
},
computed: {
i18n() {
return this.$t('index')
},
},
};
</script>
<style scoped>
</style>
<style>
@import './index.css';
</style>