This repository has been archived on 2025-05-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Astral-nook/resources/assets/scripts/components/server/subpages/ConsolePage.vue
2018-07-20 22:34:30 -07:00

22 lines
446 B
Vue

<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>