Skip to content

Instantly share code, notes, and snippets.

View guendev's full-sized avatar
🏠
Working from home

Guen guendev

🏠
Working from home
View GitHub Profile
import { defineComponent, h, reactive } from 'vue'
export default defineComponent({
name: 'VmButton',
setup() {
const state = reactive({
count: 0
})
const inc = () => {