12345678910111213141516171819202122232425262728293031 |
- <template>
- <view class="division-box">
- </view>
- </template>
- <script>
- export default {
- name: "division",
- components: {},
- props: {},
- data() {
- return {}
- },
- watch: {},
- mounted() {
- },
- methods: {}
- }
- </script>
- <style scoped lang="scss">
- .division-box{
- width: 100%;
- height: 10rpx;
- background-color: rgb(246, 247, 249);
- margin-top: 40rpx;
- }
- </style>
|