当前位置:   article > 正文

uview-plus 报错 “Cannot read property ‘mpMixin‘ of undefined”_cannot read property 'mpmixin' of undefined

cannot read property 'mpmixin' of undefined

错误原因:

该错误出现在“uview-plus\components\u-calendar\header.vue”文件内,错误原因是mixins中mpMixin,mixin无法通过$u的方式进行获取。

解决方法:

 1.导入 mpMixin,mixin

  1. import mpMixin from '../../libs/mixin/mpMixin'
  2. import mixin from '../../libs/mixin/mixin'

2.修改mixins的值

mixins: [mpMixin,mixin],

此时效果:

  1. import mpMixin from '../../libs/mixin/mpMixin'
  2. import mixin from '../../libs/mixin/mixin'
  3. export default {
  4. name: 'u-calendar-header',
  5. mixins: [mpMixin,mixin],
  6. props: {
  7. // 标题
  8. title: {
  9. type: String,
  10. default: ''
  11. },
  12. // 副标题
  13. subtitle: {
  14. type: String,
  15. default: ''
  16. },
  17. // 是否显示标题
  18. showTitle: {
  19. type: Boolean,
  20. default: true
  21. },
  22. // 是否显示副标题
  23. showSubtitle: {
  24. type: Boolean,
  25. default: true
  26. },
  27. },
  28. data() {
  29. return {
  30. }
  31. },
  32. methods: {
  33. name() {
  34. }
  35. },
  36. }

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号