15 lines
269 B
Vue
15 lines
269 B
Vue
<script setup>
|
|
// https://vue-macros.dev/zh-CN/features/reactivity-transform.html
|
|
let count = $ref(0);
|
|
|
|
// console.log(count);
|
|
|
|
function increment() {
|
|
count++;
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<button @click="increment">ReactivityTransform: {{ count }}</button>
|
|
</template>
|