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

2 weeks ago
  1. <template>
  2. <view class="page">
  3. <up-parse :content="configList.home_agreement.paramValueArea"></up-parse>
  4. </view>
  5. </template>
  6. <script>
  7. import { mapState, mapGetters } from 'vuex'
  8. export default {
  9. data() {
  10. return {
  11. }
  12. },
  13. computed : {
  14. ...mapGetters(['configList'])
  15. },
  16. methods: {
  17. }
  18. }
  19. </script>
  20. <style scoped lang="scss">
  21. .page{
  22. padding: 30rpx;
  23. background-color: #fff;
  24. }
  25. </style>