@vuedoc/parser parse class component with error

Summary vuex-class syntax in class component @leftSidebarModule.Mutation('EditDomainModel') EditDomainModel; @leftSidebarModule.Mutation('EditDomainModelName') EditDomainModelName;

when I used parse methods,a error has happened, because the @babel/parser module can't recogize this decorator syntax . the syntax above is vuex-class decorator node.body.body.forEach((property) => { if (property.static) { return; // ignore static members }

  switch (property.type) {
    case Syntax.ClassProperty:
        this.parseClassProperty(property); // the property value is null, cause the processing failed
           
      break;

Steps to reproduce

(How one can reproduce the issue - this is very important)

Example Project

(If possible, please create an example project here on GitLab.com that exhibits the problematic behaviour, and link to it here in the bug report)

What is the current bug behavior?

(What actually happens)

What is the expected correct behavior?

(What you should see instead)

Possible fixes

(If you can, link to the line of code that might be responsible for the problem)