mirror of
https://github.com/koel/koel
synced 2024-11-25 05:30:20 +00:00
10 lines
243 B
Vue
10 lines
243 B
Vue
<template>
|
|
<i :title="title" class="fa fa-question-circle help-trigger text-blue"/>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { toRefs } from 'vue'
|
|
|
|
const props = defineProps<{ title: string }>()
|
|
const { title } = toRefs(props)
|
|
</script>
|