c9f2eb2859b149073ef7747aac2c9ba7c92b6d29.svn-base 655 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <div class="setting-drawer-index-item">
  3. <h3 class="setting-drawer-index-title">{{ title }}</h3>
  4. <slot></slot>
  5. <a-divider v-if="divider"/>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. name: "SettingItem",
  11. props: {
  12. title: {
  13. type: String,
  14. default: ''
  15. },
  16. divider: {
  17. type: Boolean,
  18. default: false
  19. }
  20. }
  21. }
  22. </script>
  23. <style lang="less" scoped>
  24. .setting-drawer-index-item {
  25. margin-bottom: 24px;
  26. .setting-drawer-index-title {
  27. font-size: 14px;
  28. color: rgba(0, 0, 0, .85);
  29. line-height: 22px;
  30. margin-bottom: 12px;
  31. }
  32. }
  33. </style>