docs: Readme

This commit is contained in:
MKStoler 2024-12-11 19:59:44 +08:00
parent 752619a082
commit e9638cd7b3
2 changed files with 3 additions and 2 deletions

View File

@ -76,7 +76,7 @@
> [!tip] > [!tip]
> >
> `message``room` 为选填 > `message``room` 必填(可填空格),`examInfos` 至少需要一条数据。
> >
> 如果有两个以"/"分隔的科目可以自动转化为双行显示 > 如果有两个以"/"分隔的科目可以自动转化为双行显示

View File

@ -1,3 +1,4 @@
<!-- eslint-disable @typescript-eslint/no-unused-vars -->
<template> <template>
<v-container class="main-area"> <v-container class="main-area">
<v-row> <v-row>
@ -5,7 +6,7 @@
<h1 class="large-title">{{ globalStore.examName }}</h1> <h1 class="large-title">{{ globalStore.examName }}</h1>
<h2 class="room">{{ globalStore.room }}</h2> <h2 class="room">{{ globalStore.room }}</h2>
</v-col> </v-col>
<v-col cols="12" v-if="globalStore.message"> <v-col v-if="globalStore.message" cols="12">
<h3 class="medium-title text-left">{{ globalStore.message }}</h3> <h3 class="medium-title text-left">{{ globalStore.message }}</h3>
</v-col> </v-col>
</v-row> </v-row>