Break console page into a component

This commit is contained in:
Dane Everitt 2018-07-20 22:34:30 -07:00
parent 2ab66ba8c8
commit 784c73becd
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
5 changed files with 29 additions and 50 deletions

View file

@ -0,0 +1,22 @@
<template>
<div>
<div class="text-xs font-mono">
<div class="rounded-t p-2 bg-black text-grey-lightest h-48">
</div>
<div class="rounded-b p-2 bg-grey-darkest text-white">$</div>
</div>
</div>
</template>
<script>
export default {
name: 'console-page',
data: function () {
return {
lines: [],
};
}
};
</script>