mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
8d01fb5556
no issue - ran [ember-native-class-codemod](https://github.com/ember-codemods/ember-native-class-codemod) to convert the majority of remaining EmberObject based controllers and components to native class syntax using the `@classic` decorator - skipped older style modal components (`components/modal-*.js`) due to observed incompatibilities in some cases
11 lines
343 B
JavaScript
11 lines
343 B
JavaScript
import DraggableObject from 'ember-drag-drop/components/draggable-object';
|
|
import classic from 'ember-classic-decorator';
|
|
import {attributeBindings, classNames} from '@ember-decorators/component';
|
|
|
|
@classic
|
|
@attributeBindings('title')
|
|
@classNames('label-token')
|
|
export default class LabelToken extends DraggableObject {
|
|
title = 'Label';
|
|
}
|