soiz1's picture
Upload folder using huggingface_hub
4d70170 verified
raw
history blame
195 Bytes
<script>
export default {
data() {
return {
count: 0,
}
},
}
</script>
<template>
<div>
{{ count }} <button @click="count++">
+1
</button>
</div>
</template>