File and Code Templates | webstorm代码文件模板 vue typescript

Typescript Class

import _ from "lodash";

/**类 ${NAME}*/
export default class ${NAME} {
  /**v-for :key*/
  forKey?: string = _.uniqueId()

  constructor(obj?: ${NAME}) {
    if (obj) {
      _.assign(this, obj)
    }
  }
}

Vue Component with Typescript and Stylus





本文地址:

https://www.cnblogs.com/stumpx/p/13359109.html

你可能感兴趣的:(File and Code Templates | webstorm代码文件模板 vue typescript)