mirror of
https://gitlab.com/nekoya/presentation.git
synced 2024-12-04 14:05:02 +01:00
Remove unused file
This commit is contained in:
parent
e40ad37bd7
commit
ae131a25f9
1 changed files with 0 additions and 37 deletions
|
@ -1,37 +0,0 @@
|
|||
<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="~ gray-400 opacity-50 rounded-md">
|
||||
<button
|
||||
border="r gray-400 opacity-50"
|
||||
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 gray-400 opacity-50"
|
||||
p="2"
|
||||
font="mono"
|
||||
outline="!none"
|
||||
hover:bg="gray-400 opacity-20"
|
||||
@click="counter += 1"
|
||||
>
|
||||
+
|
||||
</button>
|
||||
</div>
|
||||
</template>
|
Loading…
Reference in a new issue