🎉 求和案例init

This commit is contained in:
bunny 2025-06-19 07:38:09 +08:00
parent 39e7447e70
commit 84e7108798
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,27 @@
<template>
<div>
<h1>当前求和为</h1>
<select>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
<button>+</button>
<button>-</button>
<button>-当前求和为奇数再加</button>
<button>-等一等再加</button>
</div>
</template>
<script>
export default {
name: "Count",
};
</script>
<style>
button {
margin: 0 4px;
}
</style>

View File

@ -0,0 +1,3 @@
<template></template>
<script></script>