cosmetic fixes
This commit is contained in:
@@ -1,46 +1,43 @@
|
||||
<template>
|
||||
|
||||
<Link :href="route(link)" class="inline-flex items-center gap-x-1.5 text-sm text-gray-600 decoration-2 hover:underline dark:text-blue-500">
|
||||
<svg class="flex-shrink-0 size-4" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15 18-6-6 6-6"/></svg>
|
||||
{{ title }}
|
||||
</Link>
|
||||
|
||||
<Link :href="resolvedLink" class="inline-flex items-center gap-x-1.5 text-sm text-gray-600 decoration-2 hover:underline dark:text-blue-500">
|
||||
<svg class="flex-shrink-0 size-4" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15 18-6-6 6-6"/></svg>
|
||||
{{ title }}
|
||||
</Link>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {Link} from "@inertiajs/vue3";
|
||||
import slugify from "slugify";
|
||||
import { Link } from "@inertiajs/vue3";
|
||||
|
||||
export default {
|
||||
name: "BackButton",
|
||||
components: {Link},
|
||||
data() {
|
||||
return {}
|
||||
},
|
||||
methods: {
|
||||
textLimit(text, symbols) {
|
||||
if (text.length > symbols) {
|
||||
let LimitedText
|
||||
LimitedText = text.substring(0, symbols)
|
||||
return LimitedText + "..."
|
||||
}
|
||||
return text
|
||||
},
|
||||
},
|
||||
|
||||
props: {
|
||||
title: {
|
||||
type: String,
|
||||
},
|
||||
link: {
|
||||
type: String
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
name: "BackButton",
|
||||
components: { Link },
|
||||
props: {
|
||||
title: {
|
||||
type: String,
|
||||
required: true, // Сделаем title обязательным
|
||||
},
|
||||
link: {
|
||||
type: String,
|
||||
required: true, // Сделаем link обязательным
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
resolvedLink() {
|
||||
// Проверяем, является ли "link" полным URL
|
||||
try {
|
||||
new URL(this.link);
|
||||
return this.link; // Если это валидный URL, возвращаем его
|
||||
} catch (e) {
|
||||
// Если это не валидный URL, предполагаем, что это название роута Inertia
|
||||
// Убедитесь, что функция route() доступна глобально или импортирована
|
||||
// (обычно она доступна в Laravel-приложениях через Inertia)
|
||||
return route(this.link);
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
|
||||
<style scoped>
|
||||
|
||||
/* Ваши стили */
|
||||
</style>
|
||||
Reference in New Issue
Block a user