Function

Module: @ember/object
import { gt } from '@ember/object/computed';
dependentKey
String
value
Number
returns
ComputedProperty
computed property which returns true if the original value for property is greater than given value.

A computed property that returns true if the provided dependent property is greater than the provided value.

Example:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { set } from '@ember/object';
import { gt } from '@ember/object/computed';

class Hamster {
  @gt('numBananas', 10) hasTooManyBananas;
}

let hamster = new Hamster();

hamster.hasTooManyBananas; // false

set(hamster, 'numBananas', 3);
hamster.hasTooManyBananas; // false

set(hamster, 'numBananas', 11);
hamster.hasTooManyBananas; // true