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.
27 lines
428 B
27 lines
428 B
<template> |
|
<view v-html="aboutUs"></view> |
|
</template> |
|
|
|
<script> |
|
import {getConfig} from "@/api/other"; |
|
|
|
export default { |
|
data() { |
|
return {aboutUs:''}; |
|
}, |
|
onLoad() { |
|
this.getAboutUs(); |
|
}, |
|
methods:{ |
|
getAboutUs(){ |
|
getConfig('aboutUs').then(res =>{ |
|
this.aboutUs = res.data.aboutUs; |
|
}) |
|
} |
|
} |
|
} |
|
</script> |
|
|
|
<style lang="scss"> |
|
|
|
</style>
|
|
|