division.vue 379 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <view class="division-box">
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. name: "division",
  8. components: {},
  9. props: {},
  10. data() {
  11. return {}
  12. },
  13. watch: {},
  14. mounted() {
  15. },
  16. methods: {}
  17. }
  18. </script>
  19. <style scoped lang="scss">
  20. .division-box{
  21. width: 100%;
  22. height: 10rpx;
  23. background-color: rgb(246, 247, 249);
  24. margin-top: 40rpx;
  25. }
  26. </style>