vuetify
Version:
Vue Material Component Framework
17 lines (15 loc) • 344 B
JavaScript
// Utilities
import { nextTick, watch } from 'vue';
// Types
export function useSelectLink(link, select) {
watch(() => link.isActive?.value, isActive => {
if (link.isLink.value && isActive && select) {
nextTick(() => {
select(true);
});
}
}, {
immediate: true
});
}
//# sourceMappingURL=selectLink.js.map