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 361B

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