|
1234567891011121314 |
- <template>
- <view :class="['bg-' + color, className]" :style="style" class="submit cu-bar-item-button">{{ title }}</view>
- </template>
-
- <script>
- export default {
- name: 'l-bar-item-button',
-
- props: {
- title: {},
- color: { default: 'gray' }
- }
- }
- </script>
|