index.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <template>
  2. <view class="van-sidebar custom-class">
  3. <slot />
  4. </view>
  5. </template>
  6. <script>
  7. 'use strict';
  8. Object.defineProperty(exports, '__esModule', {
  9. value: true
  10. });
  11. var component_1 = require('../common/component');
  12. component_1.VantComponent({
  13. relation: {
  14. name: 'sidebar-item',
  15. type: 'descendant',
  16. current: 'sidebar',
  17. linked: function () {
  18. this.setActive(this.activeKey);
  19. },
  20. unlinked: function () {
  21. this.setActive(this.activeKey);
  22. }
  23. },
  24. props: {
  25. activeKey: {
  26. type: Number,
  27. value: 0,
  28. observer: 'setActive'
  29. }
  30. },
  31. beforeCreate: function () {
  32. this.currentActive = -1;
  33. },
  34. methods: {
  35. setActive: function (activeKey) {
  36. var that = this;
  37. var children = that.children;
  38. var currentActive = that.currentActive;
  39. if (!children.length) {
  40. return Promise.resolve();
  41. }
  42. this.currentActive = activeKey;
  43. var stack = [];
  44. if (currentActive !== activeKey && children[currentActive]) {
  45. stack.push(children[currentActive].setActive(false));
  46. }
  47. if (children[activeKey]) {
  48. stack.push(children[activeKey].setActive(true));
  49. }
  50. return Promise.all(stack);
  51. }
  52. }
  53. });
  54. </script>
  55. <style>
  56. @import './index.css';
  57. </style>