Skip to content

Commit a53a28f

Browse files
authored
feat: live demo loading correctly (#41)
1 parent 65618a7 commit a53a28f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vue-playground/src/App.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<main style="text-align: center">
2+
<main v-if="!loading" style="text-align: center">
33
<template v-if="true">
44
<h1>Vue Skia</h1>
55
<p class="description">
@@ -11,7 +11,7 @@
1111
<p class="description">
1212
This super cool editor is based on <em>vue-live</em> !
1313
</p>
14-
<div class="livebox" v-if="!loading && !debug">
14+
<div class="livebox" v-if="!debug">
1515
<div class="hint">
1616
You can edit
1717
<span title="copy code to clipboard" @click="copy">this</span>
@@ -37,7 +37,7 @@
3737
/>
3838
</div>
3939
</template>
40-
<template v-if="!loading && debug">
40+
<template v-if="debug">
4141
<v-surface :width="400" :height="400">
4242
<v-points
4343
:points="[

0 commit comments

Comments
 (0)