Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

38 wiersze
666 B

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