Browse Source

修复使用 this.$options.data 报错问题

RuoYi 3 years ago
parent
commit
31106c91fb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ruoyi-ui/src/utils/dict/index.js

+ 1 - 1
ruoyi-ui/src/utils/dict/index.js

@@ -5,7 +5,7 @@ export default function(Vue, options) {
   mergeOptions(options)
   Vue.mixin({
     data() {
-      if (this.$options.dicts === undefined || this.$options.dicts === null) {
+      if (this.$options === undefined || this.$options.dicts === undefined || this.$options.dicts === null) {
         return {}
       }
       const dict = new Dict()