Skip to content

Commit

Permalink
update pinia (그냥 확인함)
Browse files Browse the repository at this point in the history
  • Loading branch information
bichikim committed Jun 9, 2023
1 parent 1796fec commit b0f1ac2
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions apps/nuxt/app.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<template>
<div>
<span>hello world</span>
</div>
<div>hello counter{{ counter }}</div>
</template>
<script lang="ts" setup>
import {} from 'vue'
const props = defineProps({})
const emit = defineEmits({})
const counter = useState('counter', () => Math.round(Math.random() * 1000))
</script>

0 comments on commit b0f1ac2

Please sign in to comment.