mirror of
https://github.com/koel/koel
synced 2024-12-30 06:23:05 +00:00
16 lines
257 B
Vue
16 lines
257 B
Vue
<template>
|
|
<i class="fa fa-question-circle help-trigger text-blue" :title="title"/>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue'
|
|
|
|
export default Vue.extend({
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
}
|
|
})
|
|
</script>
|