UNPKG

vue-chart-engine

Version:

chart components built with Vue.js

14 lines (11 loc) 213 B
export default class GenreMaker { constructor() { this.doors = 0; } drive() { console.log(`jaja, i have ${this.doors} doors`); } static factory(type) { return new GenreMaker[type](); } }