mirror of
https://framagit.org/les/gancio.git
synced 2025-02-01 00:52:01 +01:00
20 lines
451 B
Vue
20 lines
451 B
Vue
|
<template>
|
||
|
<v-tooltip top>
|
||
|
<template v-slot:activator="{ on, attrs}">
|
||
|
<v-btn v-bind="attrs" :to='to' icon v-on="on" @click='$emit("click")' :color='color'>
|
||
|
<slot />
|
||
|
</v-btn>
|
||
|
</template>
|
||
|
<span>{{ tooltip }}</span>
|
||
|
</v-tooltip>
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'TBtn',
|
||
|
props: {
|
||
|
tooltip: String,
|
||
|
color: String,
|
||
|
to: String
|
||
|
}
|
||
|
}
|
||
|
</script>
|