1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| /**
| * CCardTitle - 列表卡片标题
| * @author Tevin
| */
|
| <template>
| <view class="c-card-title m-border-strong-bottom">
| <view class="c-card-title-title">{{title}}</view>
| <view class="c-card-title-extra">
| <slot />
| </view>
| </view>
| </template>
|
| <script>
| import Taro from '@tarojs/taro';
| import {} from 'taro-ui-vue';
|
| export default {
| name: 'CCardTitle',
| components: {},
| props: {
| // 标题
| title: {
| type: String,
| default: '列表卡片标题',
| },
| // 标题点击
| onTitleClick: {
| type: Function,
| default: () => null,
| },
| },
| data() {
| return {};
| },
| methods: {},
| };
| </script>
|
|