From 4b3d812031dd07c251623d7155159115e99d2671 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Mon, 28 Aug 2017 22:54:26 -0500 Subject: Commit everything hastily I left evertything until the last minute, so I didn't have a chance to do it nicely. SORRY. --- lib/components/status.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 lib/components/status.js (limited to 'lib/components/status.js') diff --git a/lib/components/status.js b/lib/components/status.js new file mode 100644 index 0000000..4a8b099 --- /dev/null +++ b/lib/components/status.js @@ -0,0 +1,16 @@ +import Vue from 'vue'; +import DataService from '../services/data'; + +const internals = {}; + +export default Vue.component('posts', { + template: '
' + + '' + + '
Waiting
' + + '
Could not read you
' + + '
{{winner}}
' + + '
' + + '
', + + data: DataService.data +}); -- cgit