ember-assembly
Version:
A collection of beautiful UI components built by Goods
15 lines (11 loc) • 347 B
text/typescript
import Component from '@ember/component';
// @ts-ignore: Ignore import of compiled template
import template from './template';
import { notEmpty } from '@ember/object/computed';
export default class UiTableCell extends Component {
layout = template;
tagName: string = '';
linkTo?: any[] = [];
('linkTo')
hasLink!: boolean;
}