Break console page into a component
This commit is contained in:
parent
2ab66ba8c8
commit
784c73becd
5 changed files with 29 additions and 50 deletions
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue