1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| <template>
| <div class="gasOrgType-card">
| <div class="gasOrgType-card-title">{{ title }}</div>
| <NutButton class="gasOrgType-card-button" type="primary"> 进入充值 </NutButton>
| </div>
| </template>
|
| <script setup lang="ts">
| import { Button as NutButton } from '@nutui/nutui-taro';
|
| defineOptions({
| name: 'GasOrgTypeCard',
| });
|
| type Props = {
| title?: string;
| };
|
| const props = withDefaults(defineProps<Props>(), {});
| </script>
|
|