File size: 894 Bytes
4d70170 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
<script lang="ts">
import { defineComponent } from 'vue'
import { useRouter } from 'vue-router'
import PluginSourceDescription from './PluginSourceDescription.vue'
export default defineComponent({
components: {
PluginSourceDescription,
},
props: {
pluginId: {
type: String,
required: true,
},
},
setup(props) {
const router = useRouter()
function go() {
router.push({
name: 'plugin-details',
params: {
pluginId: props.pluginId,
},
})
}
return {
go,
}
},
})
</script>
<template>
<VTooltip
class="leading-none"
>
<VueIcon
icon="extension"
class="opacity-25 hover:opacity-100 cursor-pointer"
@click.stop="go()"
/>
<template #popper>
<PluginSourceDescription
:plugin-id="pluginId"
/>
</template>
</VTooltip>
</template>
|