修饰器(Decorator)是一个函数,用来修改类的行为. 一.概述 ES6 引入了这项功能,目前 Babel 转码器已经支持Decorator 首先,安装babel-core和babel-plugin-transform-decorators.由于后者包括在babel-preset-stage-0之中,所以改为安装babel-preset-stage-0亦可 $ npm install babel-core babel-plugin-transform-decorators 然后,设置配置文件…