mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-06-29 20:32:44 +08:00
修复console.log(0)不显示的bug
This commit is contained in:
parent
4fefe53ed9
commit
1770f27725
@ -11,13 +11,13 @@
|
|||||||
></iframe>
|
></iframe>
|
||||||
<div
|
<div
|
||||||
v-else
|
v-else
|
||||||
v-show="!!runResult"
|
v-show="!!runResult.length"
|
||||||
:class="{ 'text-red': !runResultStatus }"
|
:class="{ 'text-red': !runResultStatus }"
|
||||||
class="text q-px-md q-py-sm"
|
class="text q-px-md q-py-sm"
|
||||||
>
|
>
|
||||||
<div v-for="item in runResult" :key="item">
|
<div v-for="item in runResult" :key="item">
|
||||||
<ObjectTree :obj="item" v-if="typeof item === 'object'" />
|
<ObjectTree :obj="item" v-if="typeof item === 'object'" />
|
||||||
<pre class="result" v-text="item" v-else-if="!!item"></pre>
|
<pre class="result" v-text="item" v-else></pre>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user