| 1234567891011121314151617181920212223242526272829 |
- <template>
- <view>
- <view class="d-flex py3 border-bottom ">
- <view class="f-size-26 text-color-9 w200">{{ title }}</view>
- <view class="f-size-26 text-color-3 flex-1">{{ content }}</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- props: {
- title: {
- type: String,
- default: "",
- },
- content: {
- type: String,
- default: "",
- },
- },
- };
- </script>
- <style>
- </style>
|