15 lines
361 B
Vue
15 lines
361 B
Vue
<template>
|
|
<a v-tooltip="tooltip" :href="href" :target="blank ? '_BLANK' : '_SELF'" class="inline-flex btn btn-sm">
|
|
<ui-sprite :src="icon" />
|
|
</a>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const {tooltip, icon, blank = false, href = '#'} = defineProps<{
|
|
tooltip: string,
|
|
href?: string,
|
|
blank?: boolean,
|
|
icon: string,
|
|
}>();
|
|
</script>
|