12 lines
242 B
JavaScript
12 lines
242 B
JavaScript
export default class CetraPlugin {
|
|
constructor() {}
|
|
|
|
register(name, id) {
|
|
console.log('register method not implemented', this.constructor.name);
|
|
}
|
|
|
|
initComponent(el) {
|
|
console.log('there is no init method for this element', el);
|
|
}
|
|
}
|