You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

produkt.js 295B

12345678910111213141516
  1. import Model, { attr } from '@ember-data/model';
  2. export default class ProduktModel extends Model {
  3. @attr titel;
  4. @attr isSelected;
  5. @attr kategorie;
  6. @attr menge;
  7. @attr einheit;
  8. @attr bild;
  9. get status()
  10. {
  11. return `${this.titel} ${this.IsSelected}`
  12. }
  13. }