index.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <template>
  2. <view
  3. :class="'custom-class ' + utils.bem('divider', [{ dashed, hairline }, contentPosition])"
  4. :style="
  5. (borderColor ? 'border-color: ' + borderColor + ';' : '') +
  6. (textColor ? 'color: ' + textColor + ';' : '') +
  7. ' ' +
  8. (fontSize ? 'font-size: ' + fontSize + 'px;' : '') +
  9. ' ' +
  10. customStyle
  11. "
  12. >
  13. <slot />
  14. </view>
  15. </template>
  16. <script module="utils" lang="wxs" src="@/miniprogram_npm/@vant/weapp/wxs/utils.wxs"></script>
  17. <script>
  18. 'use strict';
  19. Object.defineProperty(exports, '__esModule', {
  20. value: true
  21. });
  22. var component_1 = require('../common/component');
  23. component_1.VantComponent({
  24. props: {
  25. dashed: {
  26. type: Boolean,
  27. value: false
  28. },
  29. hairline: {
  30. type: Boolean,
  31. value: false
  32. },
  33. contentPosition: {
  34. type: String,
  35. value: ''
  36. },
  37. fontSize: {
  38. type: Number,
  39. value: ''
  40. },
  41. borderColor: {
  42. type: String,
  43. value: ''
  44. },
  45. textColor: {
  46. type: String,
  47. value: ''
  48. },
  49. customStyle: {
  50. type: String,
  51. value: ''
  52. }
  53. }
  54. });
  55. </script>
  56. <style>
  57. @import './index.css';
  58. </style>