Skip to content

Commit

Permalink
feat: live demo loading correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
meloalright committed Aug 14, 2024
1 parent 65618a7 commit 1257d46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vue-playground/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<main style="text-align: center">
<main v-if="!loading" style="text-align: center">
<template v-if="true">
<h1>Vue Skia</h1>
<p class="description">
Expand All @@ -11,7 +11,7 @@
<p class="description">
This super cool editor is based on <em>vue-live</em> !
</p>
<div class="livebox" v-if="!loading && !debug">
<div class="livebox" v-if="!debug">
<div class="hint">
You can edit
<span title="copy code to clipboard" @click="copy">this</span>
Expand All @@ -37,7 +37,7 @@
/>
</div>
</template>
<template v-if="!loading && debug">
<template v-if="debug">
<v-surface :width="400" :height="400">
<v-points
:points="[
Expand Down

0 comments on commit 1257d46

Please sign in to comment.