mirror of
https://github.com/ArthurDanjou/website-old.git
synced 2026-01-22 16:00:39 +01:00
27 lines
540 B
Vue
Executable File
27 lines
540 B
Vue
Executable File
<template>
|
|
<li>
|
|
{{ $t(title) }}:
|
|
<a class="duration-300 text-indigo-600 font-medium border-b-2 border-opacity-0 hover:border-opacity-100 border-indigo-600 border-solid" v-if="link" :href="link" target="_blank">{{ content }}</a>
|
|
<span v-else>{{ content }}</span>
|
|
</li>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "EnvListItem",
|
|
props:{
|
|
title: {
|
|
default: 'Title',
|
|
type: String
|
|
},
|
|
link: {
|
|
type: String
|
|
},
|
|
content: {
|
|
default: 'content',
|
|
type: String
|
|
},
|
|
}
|
|
}
|
|
</script>
|