猫妈狗爸伴宠师小程序前端代码
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
415 B

<template>
<view class="page">
<up-parse :content="configList.home_agreement.paramValueArea"></up-parse>
</view>
</template>
<script>
import { mapState, mapGetters } from 'vuex'
export default {
data() {
return {
}
},
computed : {
...mapGetters(['configList'])
},
methods: {
}
}
</script>
<style scoped lang="scss">
.page{
padding: 30rpx;
background-color: #fff;
}
</style>