icon.vue 319 B

1234567891011121314151617
  1. <template>
  2. <UButton :icon="name" :to="href" :target="target" variant="ghost" class="ml-3"></UButton>
  3. </template>
  4. <script setup>
  5. const props = defineProps({
  6. name: '',
  7. href: ''
  8. })
  9. const target = computed(() => {
  10. if (props.href) {
  11. return '_blank'
  12. } else {
  13. return ''
  14. }
  15. })
  16. </script>