Remove Prettier format form App.vue

This commit is contained in:
khatabwedaa
2020-08-15 14:30:13 +02:00
parent 48941bd470
commit a816ca185c

View File

@@ -13,14 +13,7 @@
<div class="flex flex-wrap items-center justify-center"> <div class="flex flex-wrap items-center justify-center">
<span class="ml-2" v-for="route in routes" :key="route.path"> <span class="ml-2" v-for="route in routes" :key="route.path">
<span v-if="route.path != '/'"> <span v-if="route.path != '/'">
<router-link class="inline-block mt-2 px-3 py-1 rounded text-sm cursor-pointer hover:bg-gray-700 hover:text-gray-200" <router-link class="inline-block mt-2 px-3 py-1 rounded text-sm cursor-pointer hover:bg-gray-700 hover:text-gray-200" :class="currentPage == route.path ? 'bg-gray-700 text-gray-200' : 'bg-gray-200 text-gray-700'" :to="route.path">
:class="
currentPage == route.path
? 'bg-gray-700 text-gray-200'
: 'bg-gray-200 text-gray-700'
"
:to="route.path"
>
{{ route.name }} {{ route.name }}
</router-link> </router-link>
</span> </span>
@@ -28,14 +21,8 @@
</div> </div>
<p class="mt-8 text-gray-700 text-center"> <p class="mt-8 text-gray-700 text-center">
Headers components require simple Headers components require simple <span class="font-semibold">- don't panic please 😎 -</span>
<span class="font-semibold">- don't panic please 😎 -</span> <a href="https://gist.github.com/Miaababikir/052e31b345781c0f73180b80a285781b" target="_blank" class="text-blue-600 hover:underline">configuration</a>
<a
href="https://gist.github.com/Miaababikir/052e31b345781c0f73180b80a285781b"
target="_blank"
class="text-blue-600 hover:underline"
>configuration</a
>
</p> </p>
</div> </div>
@@ -45,16 +32,9 @@
</main> </main>
<back-to-top visibleoffset="800"> <back-to-top visibleoffset="800">
<button <button class="bg-gray-800 text-white fixed bottom-0 right-0 my-10 mx-10 p-2 rounded-md focus:outline-none" aria-label="Back to top">
class="bg-gray-800 text-white fixed bottom-0 right-0 my-10 mx-10 p-2 rounded-md focus:outline-none"
aria-label="Back to top"
>
<svg class="h-6 w-6" viewBox="0 0 20 20" fill="currentColor"> <svg class="h-6 w-6" viewBox="0 0 20 20" fill="currentColor">
<path <path fill-rule="evenodd" d="M14.707 12.707a1 1 0 01-1.414 0L10 9.414l-3.293 3.293a1 1 0 01-1.414-1.414l4-4a1 1 0 011.414 0l4 4a1 1 0 010 1.414z" clip-rule="evenodd"/>
fill-rule="evenodd"
d="M14.707 12.707a1 1 0 01-1.414 0L10 9.414l-3.293 3.293a1 1 0 01-1.414-1.414l4-4a1 1 0 011.414 0l4 4a1 1 0 010 1.414z"
clip-rule="evenodd"
/>
</svg> </svg>
</button> </button>
</back-to-top> </back-to-top>