v1 Release
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
<script setup lang="ts">
|
||||
import {computed} from "vue";
|
||||
import {Link} from "@inertiajs/vue3";
|
||||
import {Livery} from "@/Types/types";
|
||||
|
||||
defineProps<{
|
||||
livery: Livery
|
||||
}>()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<small v-if="livery.is_ai">{{livery.attribution}}</small>
|
||||
<Link v-else :href="livery.attribution_url" target="_blank"><small>{{livery.attribution}}</small></Link>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
small{
|
||||
font-size: 0.7em;
|
||||
color: var(--muted);
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user