Skip to content

Commit

Permalink
chore: revert default playground to VulmixWelcome component
Browse files Browse the repository at this point in the history
  • Loading branch information
ojvribeiro committed Jun 22, 2024
1 parent 3112895 commit 4dbee18
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions demo/app.vue
Original file line number Diff line number Diff line change
@@ -1,17 +1,3 @@
<template>
<div>
<h1>Hello</h1>

<button @click="show = !show">Toggle</button>

<div v-if="show">
<h2>World</h2>
</div>
</div>
<VulmixWelcome />
</template>

<script setup lang="ts">
import { ref } from 'vue'
const show = ref(true)
</script>

0 comments on commit 4dbee18

Please sign in to comment.