Closed noor-tg closed 4 years ago
Please elaborate what "abstract class support" means. Abstract class component? mixin? something else?
Please elaborate what "abstract class support" means. Abstract class component? mixin? something else? I mean typescript abstract classes . for example :
abstract class Person { name: string;
constructor(name: string) {
this.name = name;
}
display(): void{
console.log(this.name);
}
abstract find(string): Person;
}
If you mean it's component, we can't because Vue instantiate it. If it's mixin, already supported.
is supporting abstract classes can be considered in the new version ? and why it can not be supported if not ?