opnform-host-nginx/resources/js/components/open/tables/components/OpenUrl.vue

27 lines
347 B
Vue
Raw Normal View History

2022-09-20 21:59:52 +02:00
<template>
<a class="text-gray-700 dark:text-gray-300 hover:underline" :href="value" target="_blank" rel="nofollow">{{ value }}</a>
</template>
<script>
export default {
components: {},
props: {
value: {
required: true
},
},
mounted() {
},
data() {
return {}
},
computed: {
},
methods: {},
}
</script>