github.com/manicqin/nomad@v0.9.5/ui/app/components/freestyle/sg-distribution-bar-jumbo.js (about)

     1  import Component from '@ember/component';
     2  import { computed } from '@ember/object';
     3  
     4  export default Component.extend({
     5    distributionBarData: computed(() => {
     6      return [
     7        { label: 'one', value: 10 },
     8        { label: 'two', value: 20 },
     9        { label: 'three', value: 0 },
    10        { label: 'four', value: 35 },
    11      ];
    12    }),
    13  });