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.
 
 
 

29 lines
479 B

<template>
<view v-html="privacyPolicy"></view>
</template>
<script>
import {getConfig} from "@/api/other";
export default {
data() {
return {
privacyPolicy:''
};
},
onLoad() {
this.getPrivacyPolicy();
},
methods:{
getPrivacyPolicy(){
getConfig('privacyPolicy').then(res => {
this.privacyPolicy = res.data;
})
}
}
}
</script>
<style lang="scss">
</style>