/* global Vue */ (() => { Vue.component('time-tracking-spent-only-pane', { name: 'time-tracking-spent-only-pane', props: ['timeSpentHumanReadable'], template: `
Spent: {{ timeSpentHumanReadable }}
`, }); })();