buttons now in collums
parent
cb586bdddb
commit
2b8b4f27ec
|
|
@ -2,9 +2,9 @@
|
|||
<div class="back">
|
||||
<h1>Back</h1>
|
||||
<label> Search</label>
|
||||
<button v-for="exercise in exercises" :key="exercise.name">
|
||||
{{exercise.name}}
|
||||
</button>
|
||||
<div v-for="exercise in exercises" :key="exercise.name">
|
||||
<button>{{ exercise.name }}</button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
|||
|
|
@ -2,9 +2,9 @@
|
|||
<div class="biceps">
|
||||
<h1>Biceps</h1>
|
||||
<label> Search</label>
|
||||
<button v-for="exercise in exercises" :key="exercise.name">
|
||||
{{exercise.name}}
|
||||
</button>
|
||||
<div v-for="exercise in exercises" :key="exercise.name">
|
||||
<button>{{ exercise.name }}</button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
|||
|
|
@ -2,9 +2,9 @@
|
|||
<div class="chest">
|
||||
<h1>Chest</h1>
|
||||
<label> Search</label>
|
||||
<button v-for="exercise in exercises" :key="exercise.name">
|
||||
{{exercise.name}}
|
||||
</button>
|
||||
<div v-for="exercise in exercises" :key="exercise.name">
|
||||
<button>{{ exercise.name }}</button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
|||
|
|
@ -2,9 +2,9 @@
|
|||
<div class="legs">
|
||||
<h1>Legs</h1>
|
||||
<label> Search</label>
|
||||
<button v-for="exercise in exercises" :key="exercise.name">
|
||||
{{exercise.name}}
|
||||
</button>
|
||||
<div v-for="exercise in exercises" :key="exercise.name">
|
||||
<button>{{ exercise.name }}</button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
|||
|
|
@ -2,9 +2,9 @@
|
|||
<div class="shoulder">
|
||||
<h1>Shoulder</h1>
|
||||
<label> Search</label>
|
||||
<button v-for="exercise in exercises" :key="exercise.name">
|
||||
{{exercise.name}}
|
||||
</button>
|
||||
<div v-for="exercise in exercises" :key="exercise.name">
|
||||
<button>{{ exercise.name }}</button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
<template>
|
||||
<div class="triceps">
|
||||
<h1><button>Triceps</button></h1>
|
||||
<h1>Triceps</h1>
|
||||
<label> Search</label>
|
||||
<button v-for="exercise in exercises" :key="exercise.name">
|
||||
{{exercise.name}}
|
||||
</button>
|
||||
<div v-for="exercise in exercises" :key="exercise.name">
|
||||
<button>{{ exercise.name }}</button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue