u-title.vue 626 B

123456789101112131415161718192021222324252627282930313233343536
  1. <style scoped lang="scss">
  2. .u-title {
  3. .u-title-prefix {
  4. width: 4px;
  5. height: 18px;
  6. border-radius: 2px;
  7. background: $u-primary;
  8. margin-right: 12px;
  9. margin-right :10px;
  10. }
  11. }
  12. </style>
  13. <template>
  14. <view class="u-title u-flex-row u-flex-y-center">
  15. <slot name="prefix">
  16. <view class="u-title-prefix">
  17. </view>
  18. </slot>
  19. <slot></slot>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. name: 'u-title',
  25. props: {
  26. },
  27. data() {
  28. return {
  29. }
  30. },
  31. created: function () {
  32. },
  33. methods: {
  34. }
  35. }
  36. </script>