|
1234567891011121314 |
- <template>
- <view :class="[dark ? 'bg-black' : 'bg-white', className]" :style="style" class="cu-bar tabbar"><slot></slot></view>
- </template>
-
- <script>
- export default {
- name: 'l-bar',
-
- props: {
- msginput: {},
- dark: {}
- }
- }
- </script>
|