<template> <view class="divider flex"><slot></slot></view> </template> <script> export default { name: 'Divider' }; </script> <style lang="scss"> @import '@/scss/uni.scss'; .divider { font-size: 24rpx; color: #868686; &::before, &::after { content: ''; background-color: #868686; height: 1rpx; flex: 1; } &::before { margin-right: 28rpx; } &::after { margin-left: 28rpx; } } </style>