bootstrap-vue-3
Version:
Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript
18 lines (14 loc) • 451 B
text/typescript
import {DirectiveBinding} from 'vue'
/**
* This is not marked as external, but in the future I think it may be
*/
export default {
mounted(el: HTMLElement, binding: DirectiveBinding): void {
let target: string = binding.value
if (Object.keys(binding.modifiers).length > 0) {
;[target] = Object.keys(binding.modifiers)
}
el.setAttribute('data-bs-toggle', 'modal')
el.setAttribute('data-bs-target', `#${target}`)
},
}