first init

This commit is contained in:
2024-06-10 22:33:59 +09:00
commit 02a2375e5d
7 changed files with 134 additions and 0 deletions

8
src/js/my-comp.js Normal file
View File

@ -0,0 +1,8 @@
import { ref } from 'vue'
export default {
setup() {
const count = ref(0)
return { count }
},
template: `<div>Count is: {{ count }}</div>`
}