This repository has been archived on 2025-08-13. You can view files and clone it, but cannot push or open issues or pull requests.
Files
KTUSA-PS/KTUSA PS/ClientApp/src/components/Counter.vue
2021-08-09 20:46:45 +03:00

26 lines
546 B
Vue

<template>
<h1>Counter</h1>
<p>This is a simple example of an Vue component.</p>
<p aria-live="polite">Current count: <strong>{{ currentCount }}</strong></p>
<button class="btn btn-primary" @click="incrementCounter">Increment</button>
</template>
<script>
export default {
name: "Counter",
data() {
return {
currentCount: 0
}
},
methods: {
incrementCounter() {
this.currentCount++;
}
}
}
</script>