mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-25 04:25:15 +00:00
14 lines
220 B
Vue
14 lines
220 B
Vue
<template>
|
|
<div :title="hint">
|
|
<i-mdi-information-outline />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps({
|
|
hint: { type: String, required: true },
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|