work with pathPrefixes and without

This commit is contained in:
hamdy
2021-03-07 13:05:44 +02:00
parent e1df49afaf
commit bebee97469
3 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@@ -18,3 +18,4 @@ install.sh
run.sh
build.sh
package-lock.json
dist

View File

@@ -141,7 +141,7 @@
v-else
class="block px-4 py-2 mt-2 text-sm font-semibold bg-transparent rounded-lg dark:bg-transparent dark:hover:bg-gray-600 dark-:focus:bg-gray-600 dark:focus:text-white dark:hover:text-white dark:text-gray-200 md:mt-0 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
@click="open = false"
:href="link.path"
:href="$url(link.path)"
>{{ link.title }}</a
>
</div>

View File

@@ -65,7 +65,7 @@
v-for="tag in tags"
:key="tag.path"
class="cursor-pointer block px-4 py-2 mt-2 text-sm font-semibold bg-transparent rounded-lg dark:bg-transparent dark:hover:bg-gray-600 dark-:focus:bg-gray-600 dark:focus:text-white dark:hover:text-white dark:text-gray-200 md:mt-0 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
:href="tag.path"
:href="$url(tag.path)"
@click.self="open = false"
>{{ tag.title }}</a
>