github.com/manicqin/nomad@v0.9.5/ui/app/components/freestyle/sg-table-configuration.js (about)

     1  import Component from '@ember/component';
     2  
     3  export default Component.extend({
     4    attributes: {
     5      key: 'val',
     6      deep: {
     7        key: 'val',
     8        more: 'stuff',
     9      },
    10      array: ['one', 'two', 'three', 'four'],
    11      very: {
    12        deep: {
    13          key: {
    14            incoming: {
    15              one: 1,
    16              two: 2,
    17              three: 3,
    18              four: 'surprisingly long value that is unlike the other properties in this object',
    19            },
    20          },
    21        },
    22      },
    23    },
    24  });