We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65618a7 commit a53a28fCopy full SHA for a53a28f
vue-playground/src/App.vue
@@ -1,5 +1,5 @@
1
<template>
2
- <main style="text-align: center">
+ <main v-if="!loading" style="text-align: center">
3
<template v-if="true">
4
<h1>Vue Skia</h1>
5
<p class="description">
@@ -11,7 +11,7 @@
11
12
This super cool editor is based on <em>vue-live</em> !
13
</p>
14
- <div class="livebox" v-if="!loading && !debug">
+ <div class="livebox" v-if="!debug">
15
<div class="hint">
16
You can edit
17
<span title="copy code to clipboard" @click="copy">this</span>
@@ -37,7 +37,7 @@
37
/>
38
</div>
39
</template>
40
- <template v-if="!loading && debug">
+ <template v-if="debug">
41
<v-surface :width="400" :height="400">
42
<v-points
43
:points="[
0 commit comments