Files
system/components/menu/MenuAdd.vue
Xuan Loi ae1ea57130 changes
2026-01-09 17:25:23 +07:00

11 lines
243 B
Vue

<template>
<span class="tooltip">
<span class="dot-twitter">+</span>
<span class="tooltiptext to-left" style="min-width: max-content;">{{ label }}</span>
</span>
</template>
<script>
export default {
props: ['label']
}
</script>