buttons now in collums

main
roberts 2023-05-02 16:55:56 +02:00
parent cb586bdddb
commit 2b8b4f27ec
6 changed files with 19 additions and 19 deletions

View File

@ -2,9 +2,9 @@
<div class="back"> <div class="back">
<h1>Back</h1> <h1>Back</h1>
<label> Search</label> <label> Search</label>
<button v-for="exercise in exercises" :key="exercise.name"> <div v-for="exercise in exercises" :key="exercise.name">
{{exercise.name}} <button>{{ exercise.name }}</button>
</button> </div>
</div> </div>
</template> </template>

View File

@ -2,9 +2,9 @@
<div class="biceps"> <div class="biceps">
<h1>Biceps</h1> <h1>Biceps</h1>
<label> Search</label> <label> Search</label>
<button v-for="exercise in exercises" :key="exercise.name"> <div v-for="exercise in exercises" :key="exercise.name">
{{exercise.name}} <button>{{ exercise.name }}</button>
</button> </div>
</div> </div>
</template> </template>

View File

@ -2,9 +2,9 @@
<div class="chest"> <div class="chest">
<h1>Chest</h1> <h1>Chest</h1>
<label> Search</label> <label> Search</label>
<button v-for="exercise in exercises" :key="exercise.name"> <div v-for="exercise in exercises" :key="exercise.name">
{{exercise.name}} <button>{{ exercise.name }}</button>
</button> </div>
</div> </div>
</template> </template>

View File

@ -2,9 +2,9 @@
<div class="legs"> <div class="legs">
<h1>Legs</h1> <h1>Legs</h1>
<label> Search</label> <label> Search</label>
<button v-for="exercise in exercises" :key="exercise.name"> <div v-for="exercise in exercises" :key="exercise.name">
{{exercise.name}} <button>{{ exercise.name }}</button>
</button> </div>
</div> </div>
</template> </template>

View File

@ -2,9 +2,9 @@
<div class="shoulder"> <div class="shoulder">
<h1>Shoulder</h1> <h1>Shoulder</h1>
<label> Search</label> <label> Search</label>
<button v-for="exercise in exercises" :key="exercise.name"> <div v-for="exercise in exercises" :key="exercise.name">
{{exercise.name}} <button>{{ exercise.name }}</button>
</button> </div>
</div> </div>
</template> </template>

View File

@ -1,10 +1,10 @@
<template> <template>
<div class="triceps"> <div class="triceps">
<h1><button>Triceps</button></h1> <h1>Triceps</h1>
<label> Search</label> <label> Search</label>
<button v-for="exercise in exercises" :key="exercise.name"> <div v-for="exercise in exercises" :key="exercise.name">
{{exercise.name}} <button>{{ exercise.name }}</button>
</button> </div>
</div> </div>
</template> </template>