1234567891011121314151617 |
- // 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.mjs.map
|