Vue-class-component 是 vue 的官方库,作用是使用类样式语法编写vue组件。
注:data render 和所有Vue生命周期挂钩也可以直接声明为类成员方法,但不能在实例本身上调用它们。在声明自定义方法时,应避免使用这些保留名称。
vue-property-decorator
完全依赖于vue-class-component,提供了装饰器方法:
@Component(options)--- (完全继承于vue-class-component)
1,component
2,filters
3,directives
@Prop
@Watch
@Emit
@Model
@Inject
@Provide