opnform/resources/js/components/open/tables/components/OpenUrl.vue

27 lines
347 B
Vue

<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>