frequi_origin/src/components/general/InfoBox.vue

14 lines
220 B
Vue
Raw Normal View History

<template>
<div :title="hint">
2023-05-09 16:14:20 +00:00
<i-mdi-information-outline />
</div>
</template>
2023-05-09 18:07:05 +00:00
<script setup lang="ts">
defineProps({
hint: { type: String, required: true },
});
</script>
<style lang="scss" scoped></style>