Ghost/ghost/admin/app/components/modals/post-preview.js
Kevin Ansfield b2bbaf153d Converted post-preview modal to EPM based modal
refs https://github.com/TryGhost/Team/issues/559

- moved the modal component class, template, and sub-components into a `components/modals/` directory to keep the top-level dir cleaner
- migrated component class to full glimmer syntax
2021-09-13 13:01:12 +01:00

13 lines
289 B
JavaScript

import Component from '@glimmer/component';
import {action} from '@ember/object';
import {tracked} from '@glimmer/tracking';
export default class ModalPostPreviewComponent extends Component {
@tracked tab = 'browser';
@action
changeTab(tab) {
this.tab = tab;
}
}