style1.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template id="title-block-style1">
  2. <div class="title-block-style1" flex="cross:center">
  3. <!-- 图片位置 -->
  4. <div class="title-block-line" :style="{background: computedStyle.titleColor}"></div>
  5. <div class="title" :style="{color: computedStyle.titleColor}">{{title}}</div>
  6. <div class="title-block-line" :style="{background: computedStyle.titleColor}"></div>
  7. </div>
  8. </template>
  9. <script>
  10. Vue.component('title-block-style1', {
  11. name: "title-block-style1",
  12. props: {
  13. title: {
  14. type: String,
  15. default () {
  16. return "标题"
  17. }
  18. },
  19. computedStyle: {
  20. type: Object,
  21. default () {
  22. return {}
  23. }
  24. }
  25. },
  26. template: '#title-block-style1',
  27. });
  28. </script>
  29. <style scoped lang="scss">
  30. .title-block-style1 {
  31. height: 33px;
  32. justify-content: center;
  33. .title-block-line {
  34. width: 29px;
  35. height: 1px;
  36. background-color: #000;
  37. }
  38. .title {
  39. margin: 0 10px;
  40. font-size: 14px;
  41. }
  42. }
  43. </style>