item-mixin.js 367 B

123456789101112131415161718192021
  1. export default {
  2. props: {
  3. parentItem: {
  4. type: Object,
  5. default: () => {}
  6. },
  7. theme: String,
  8. iconSize: Number
  9. },
  10. computed: {
  11. parentName () {
  12. return this.parentItem.name
  13. },
  14. children () {
  15. return this.parentItem.children
  16. },
  17. textColor () {
  18. return this.theme === 'dark' ? '#fff' : '#495060'
  19. }
  20. }
  21. }