data()

in src/components/base/filtered_search/filtered_search_token.stories.js [155:170]


  data() {
    return {
      value: { operator: '<', data: null },
      config: {
        title: 'Date',
        operators: [
          { value: '<', description: 'before' },
          { value: '>', description: 'after' },
        ],
      },
      dataSegmentInputAttributes: {
        placeholder: 'YYYY-MM-DD',
        id: 'this-id',
      },
    };
  },