equipment-line.vue 462 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view>
  3. <view class="d-flex py3 border-bottom ">
  4. <view class="f-size-26 text-color-9 w200">{{ title }}</view>
  5. <view class="f-size-26 text-color-3 flex-1">{{ content }}</view>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {};
  13. },
  14. props: {
  15. title: {
  16. type: String,
  17. default: "",
  18. },
  19. content: {
  20. type: String,
  21. default: "",
  22. },
  23. },
  24. };
  25. </script>
  26. <style>
  27. </style>