iczer/vue-antd-admin

运行后发现 less使用:globe报错

SussieZhang opened this issue · 3 comments

image
TypeError: Cannot set property 'parent' of undefined

问一下,你解决了没?我今天npm run serve之后也是这个问题。

同问,之前是好的,但是换电脑再跑就跑不起来了

  1. package.json 锁定vuevue-template-compiler 为2.6.x版本, 2.7.x版本后会出现以上问题。
    找到
{
     "vue": "^2.6.xxx",
    "vue-template-compiler": "^2.6.xxx"
...
}

去掉 ^

{
     "vue": "2.6.xxx",
    "vue-template-compiler": "2.6.xxx"
...
}
  1. 删除 node_modulespackage-lock.json
  2. npm install