Finalizing The WebUI for alpha/beta testing next week.

The WebUI is mostly done for now, The only missing piece is backend view, which isn't something we will include in the first release.
This commit is contained in:
abdulmohsen
2024-05-10 18:56:17 +03:00
parent fbd95471ec
commit 5f0874d64b
15 changed files with 403 additions and 212 deletions

View File

@@ -3,7 +3,7 @@
<div class="column is-12">
<h1 class="title is-4">
<NuxtLink href="/history">Recent History</NuxtLink>
<NuxtLink href="/history">Latest History Entries</NuxtLink>
</h1>
</div>
@@ -58,7 +58,7 @@
<div class="column is-12" v-for="log in logs" :key="log.filename">
<h1 class="title is-4">
<NuxtLink :href="`/logs/${log.filename}`">Today {{ ucFirst(log.type) }} log</NuxtLink>
<NuxtLink :href="`/logs/${log.filename}`">Latest {{ log.type }} logs</NuxtLink>
</h1>
<code class="box logs-container">
<span class="is-block" v-for="(item, index) in log.lines" :key="log.filename + '-' + index">
@@ -82,7 +82,6 @@
import request from '~/utils/request.js'
import moment from 'moment'
import Message from '~/components/Message.vue'
import {ucFirst} from '../utils/index.js'
useHead({title: 'Index'})