24 lines
364 B
Vue
24 lines
364 B
Vue
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
|
|
const count = ref(0)
|
|
</script>
|
|
|
|
<template>
|
|
<div class="counter">
|
|
<p>
|
|
Counter: {{ count }}
|
|
</p>
|
|
<button type="button" class="btn" @click="count += 1">
|
|
+ 1
|
|
</button>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.btn {
|
|
border: 1px solid var(--vp-c-divider);
|
|
border-radius: 4px;
|
|
}
|
|
</style>
|