@修饰器Decorator

编前语

  • 修改类的行为
  • 修饰类、修饰类的属性
  • ES7的一个提案
  • 类的改变在代码编译时发生,不是在运行时
  • babel转码或者使用TypeScript

准备

类的操作
  • class :类的定义
  • extends: 类 的继承
  • decorator: 在多个不同类之间共享、复用一些方法

babel 转码器的支持

npm install  babel-core   babel-plugin-transform-decorators  -D 
   //.babelrc
{
 "plugins":["transform-decorators"]
}

你可能感兴趣的:(@修饰器Decorator)