VueMacros
All checks were successful
CI / cache-and-install (push) Successful in 1m25s

This commit is contained in:
严浩
2024-08-26 12:07:57 +08:00
parent 9fe54c151e
commit b7913ae47c
18 changed files with 966 additions and 495 deletions

View File

@ -0,0 +1,13 @@
<script setup>
let count = $ref(0);
console.log(count);
function increment() {
count++;
}
</script>
<template>
<button @click="increment">ReactivityTransform: {{ count }}</button>
</template>