This commit is contained in:
syuilo 2018-02-22 01:08:49 +09:00
parent 24142cd5c6
commit a77ac7e651
11 changed files with 47 additions and 22 deletions

View file

@ -6,7 +6,7 @@
<div ref="log">
<p v-for="req in requests">
<span class="ip" :style="`color:${ req.fg }; background:${ req.bg }`">{{ req.ip }}</span>
<span>{{ req.method }}</span>
<b>{{ req.method }}</b>
<span>{{ req.path }}</span>
</p>
</div>
@ -15,7 +15,7 @@
<script lang="ts">
import define from '../../../../common/define-widget';
import seedrandom from 'seedrandom';
import * as seedrandom from 'seedrandom';
export default define({
name: 'broadcast',
@ -101,4 +101,7 @@ export default define({
> .ip
margin-right 4px
> b
margin-right 4px
</style>