opnform-host-nginx/client/components/open/tables/components/OpenUrl.vue

30 lines
380 B
Vue
Raw Normal View History

2023-12-09 15:47:03 +01:00
<template>
<a
class="text-gray-700 dark:text-gray-300 hover:underline"
:href="value"
target="_blank"
rel="nofollow"
>{{ value }}</a>
2023-12-09 15:47:03 +01:00
</template>
<script>
export default {
components: {},
props: {
value: {
type: String,
required: true,
2023-12-09 15:47:03 +01:00
},
},
data() {
return {}
},
computed: {},
mounted() {},
2023-12-09 15:47:03 +01:00
methods: {},
}
</script>