Add project files.

This commit is contained in:
Karolis2011
2021-08-09 20:46:45 +03:00
parent f5e18022ed
commit e498f41f95
26 changed files with 12941 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<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>