Skip to content
Snippets Groups Projects
Commit 0fd20dc9 authored by Mactavish's avatar Mactavish
Browse files

remove unused files

parent 3a780d4f
No related branches found
No related tags found
No related merge requests found
<script setup lang="ts">
import { ref } from 'vue'
const props = defineProps({
count: {
default: 0,
},
})
const counter = ref(props.count)
</script>
<template>
<div flex="~" w="min" border="~ main rounded-md">
<button
border="r main"
p="2"
font="mono"
outline="!none"
hover:bg="gray-400 opacity-20"
@click="counter -= 1"
>
-
</button>
<span m="auto" p="2">{{ counter }}</span>
<button
border="l main"
p="2"
font="mono"
outline="!none"
hover:bg="gray-400 opacity-20"
@click="counter += 1"
>
+
</button>
</div>
</template>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment