estimate_only_pane.js 354 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/* global Vue */
(() => {
  Vue.component('time-tracking-estimate-only-pane', {
    name: 'time-tracking-estimate-only-pane',
    props: ['timeEstimateHumanReadable'],
    template: `
      <div class='time-tracking-estimate-only-pane'>
        <span class='bold'>Estimated:</span>
        {{ timeEstimateHumanReadable }}
      </div>
    `,
  });
})();