buttons now in collums
This commit is contained in:
@@ -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>
|
||||||
|
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user