您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

15 行
245 B

  1. <template>
  2. <view :class="[dark ? 'bg-black' : 'bg-white', className]" :style="style" class="cu-bar tabbar"><slot></slot></view>
  3. </template>
  4. <script>
  5. export default {
  6. name: 'l-bar',
  7. props: {
  8. msginput: {},
  9. dark: {}
  10. }
  11. }
  12. </script>