refactor: ♻️ rename gallery component in import
Use a more consistent naming scheme for imported components
This commit is contained in:
parent
477151ae18
commit
ed0fa31a0f
1 changed files with 12 additions and 12 deletions
24
src/App.vue
24
src/App.vue
|
@ -221,7 +221,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<gallery v-show="nsfw">
|
<ref-gallery v-show="nsfw">
|
||||||
<figure>
|
<figure>
|
||||||
<img src="@img/muscle-ref/muscle-ref1.png" />
|
<img src="@img/muscle-ref/muscle-ref1.png" />
|
||||||
<figcaption>
|
<figcaption>
|
||||||
|
@ -298,7 +298,7 @@
|
||||||
</a>
|
</a>
|
||||||
</figcaption>
|
</figcaption>
|
||||||
</figure>
|
</figure>
|
||||||
</gallery>
|
</ref-gallery>
|
||||||
|
|
||||||
<h3 v-show="nsfw" id="penis">Penis</h3>
|
<h3 v-show="nsfw" id="penis">Penis</h3>
|
||||||
<ref-figure v-show="nsfw">
|
<ref-figure v-show="nsfw">
|
||||||
|
@ -360,7 +360,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h3>Casual Wear</h3>
|
<h3>Casual Wear</h3>
|
||||||
<gallery>
|
<ref-gallery>
|
||||||
<figure>
|
<figure>
|
||||||
<img src="@img/clothes-ref/warm/tank-top.jpg" alt="Tank Top" />
|
<img src="@img/clothes-ref/warm/tank-top.jpg" alt="Tank Top" />
|
||||||
<figcaption>Loose Tank Top</figcaption>
|
<figcaption>Loose Tank Top</figcaption>
|
||||||
|
@ -379,10 +379,10 @@
|
||||||
<img src="@img/clothes-ref/warm/sneakers.jpg" alt="Sneakers" />
|
<img src="@img/clothes-ref/warm/sneakers.jpg" alt="Sneakers" />
|
||||||
<figcaption>Sneakers (Air Jordan style)</figcaption>
|
<figcaption>Sneakers (Air Jordan style)</figcaption>
|
||||||
</figure>
|
</figure>
|
||||||
</gallery>
|
</ref-gallery>
|
||||||
|
|
||||||
<h3>Cold Weather</h3>
|
<h3>Cold Weather</h3>
|
||||||
<gallery>
|
<ref-gallery>
|
||||||
<figure>
|
<figure>
|
||||||
<img src="@img/clothes-ref/cold/coat.jpg" alt="Coat" />
|
<img src="@img/clothes-ref/cold/coat.jpg" alt="Coat" />
|
||||||
<figcaption>Coat</figcaption>
|
<figcaption>Coat</figcaption>
|
||||||
|
@ -403,10 +403,10 @@
|
||||||
<img src="@img/clothes-ref/cold/boots.jpg" alt="Boots" />
|
<img src="@img/clothes-ref/cold/boots.jpg" alt="Boots" />
|
||||||
<figcaption>Boots</figcaption>
|
<figcaption>Boots</figcaption>
|
||||||
</figure>
|
</figure>
|
||||||
</gallery>
|
</ref-gallery>
|
||||||
|
|
||||||
<h3>Workout</h3>
|
<h3>Workout</h3>
|
||||||
<gallery>
|
<ref-gallery>
|
||||||
<figure>
|
<figure>
|
||||||
<img src="@img/clothes-ref/workout/hoodie.jpg" alt="Hoodie" />
|
<img src="@img/clothes-ref/workout/hoodie.jpg" alt="Hoodie" />
|
||||||
<figcaption>
|
<figcaption>
|
||||||
|
@ -433,10 +433,10 @@
|
||||||
<img src="@img/clothes-ref/warm/sneakers.jpg" alt="Sneakers" />
|
<img src="@img/clothes-ref/warm/sneakers.jpg" alt="Sneakers" />
|
||||||
<figcaption>Sneakers (Air Jordan style)</figcaption>
|
<figcaption>Sneakers (Air Jordan style)</figcaption>
|
||||||
</figure>
|
</figure>
|
||||||
</gallery>
|
</ref-gallery>
|
||||||
|
|
||||||
<h3>"Doesn't need to leave the house today" Style</h3>
|
<h3>"Doesn't need to leave the house today" Style</h3>
|
||||||
<gallery>
|
<ref-gallery>
|
||||||
<figure>
|
<figure>
|
||||||
<img src="@img/clothes-ref/lazy/pants.jpg" alt="Tank Top" />
|
<img src="@img/clothes-ref/lazy/pants.jpg" alt="Tank Top" />
|
||||||
<figcaption>Tracksuit pants (optional)</figcaption>
|
<figcaption>Tracksuit pants (optional)</figcaption>
|
||||||
|
@ -445,7 +445,7 @@
|
||||||
<img src="@img/clothes-ref/lazy/undies.jpg" alt="Shorts" />
|
<img src="@img/clothes-ref/lazy/undies.jpg" alt="Shorts" />
|
||||||
<figcaption>Topless w/ jockstrap/boxer briefs</figcaption>
|
<figcaption>Topless w/ jockstrap/boxer briefs</figcaption>
|
||||||
</figure>
|
</figure>
|
||||||
</gallery>
|
</ref-gallery>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="abilities">
|
<section id="abilities">
|
||||||
|
@ -611,7 +611,7 @@
|
||||||
<script>
|
<script>
|
||||||
import QuickFacts from "@components/QuickFacts.vue";
|
import QuickFacts from "@components/QuickFacts.vue";
|
||||||
import DataTable from "@components/DataTable.vue";
|
import DataTable from "@components/DataTable.vue";
|
||||||
import Gallery from "@components/Gallery.vue";
|
import RefGallery from "@components/Gallery.vue";
|
||||||
import RefFigure from "@components/Figure.vue";
|
import RefFigure from "@components/Figure.vue";
|
||||||
import RefHeader from "@components/Header.vue";
|
import RefHeader from "@components/Header.vue";
|
||||||
import RefFooter from "@components/Footer.vue";
|
import RefFooter from "@components/Footer.vue";
|
||||||
|
@ -626,7 +626,7 @@ export default {
|
||||||
components: {
|
components: {
|
||||||
QuickFacts,
|
QuickFacts,
|
||||||
DataTable,
|
DataTable,
|
||||||
Gallery,
|
RefGallery,
|
||||||
RefFigure,
|
RefFigure,
|
||||||
RefHeader,
|
RefHeader,
|
||||||
RefFooter,
|
RefFooter,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue