Goodsclass.vue 664 B

12345678910111213141516171819202122232425262728293031323334
  1. <template><page-meta :root-font-size="fontSize+'px'"></page-meta>
  2. <home-base :show="false"><view class="div category">
  3. <home-common-search></home-common-search>
  4. <goodsclass-body></goodsclass-body>
  5. </view></home-base>
  6. </template>
  7. <script>
  8. import {getFontSize} from '@/util/common'
  9. import HomeBase from '../HomeBase'
  10. import HomeCommonSearch from '../common/HomeCommonSearch'
  11. import GoodsclassBody from './GoodsclassBody'
  12. export default {
  13. name:'HomeGoodsclass',
  14. components:{
  15. HomeBase,
  16. HomeCommonSearch,
  17. GoodsclassBody
  18. },
  19. computed:{
  20. fontSize(){
  21. return getFontSize()
  22. },
  23. }
  24. }
  25. </script>
  26. <style scoped lang='scss'>
  27. </style>