setting.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {{define "component/settingListItem"}}
  2. <a-list-item :style="{ padding: padding }">
  3. <a-row>
  4. <a-col :lg="24" :xl="12">
  5. <a-list-item-meta>
  6. <template #title>
  7. <slot name="title"></slot>
  8. </template>
  9. <template #description>
  10. <slot name="description"></slot>
  11. </template>
  12. </a-list-item-meta>
  13. </a-col>
  14. <a-col :lg="24" :xl="12">
  15. <slot name="control"></slot>
  16. </a-col>
  17. </a-row>
  18. </a-list-item>
  19. {{end}}
  20. {{define "component/setting"}}
  21. <script>
  22. Vue.component('a-setting-list-item', {
  23. props: ["title", "description", "paddings"],
  24. template: `{{ template "component/settingListItem" }}`,
  25. computed: {
  26. padding() {
  27. switch (this.paddings) {
  28. case "small":
  29. return "10px 20px !important"
  30. break;
  31. default:
  32. return "20px !important"
  33. break;
  34. }
  35. }
  36. }
  37. })
  38. </script>
  39. {{end}}