Nigel Barink 1cd303824d
Some checks failed
My Actions / Explore (push) Has been cancelled
Setting up basic application structure
2024-11-04 21:41:33 +01:00

19 lines
300 B
Vue

<script setup>
import { ref } from 'vue'
defineProps({ text: String })
const count = ref(0);
function increment() {
count.value++;
}
</script>
<template>
<h1>Home Automation</h1>
<h2>{{ text }} </h2>
<span> {{ count }}</span>
<button @click="increment">+</button>
</template>