mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-03 00:15:11 +03:00
11 lines
191 B
JavaScript
11 lines
191 B
JavaScript
|
import Component from '@ember/component';
|
||
|
|
||
|
export default Component.extend({
|
||
|
tagName: '',
|
||
|
|
||
|
init() {
|
||
|
this._super(...arguments);
|
||
|
this.registerComponent(this);
|
||
|
}
|
||
|
});
|