import Vue from 'vue'; import DataService from '../services/data'; const internals = {}; /** * The status class, renders the winner during the poll stage, and a * message while waiting * * @class StatusComponent */ export default Vue.component('status', { template: '
' + '' + '
Waiting
' + '
Could not read you
' + '
{{winner}}
' + '
' + '
', data: DataService.data });