Files
mixtape/zero.Web/App/Directives/dropdown.js
T
2020-04-07 12:28:47 +02:00

17 lines
258 B
JavaScript

import Vue from 'vue';
/// <summary>
/// This directive is used to bind an element (button or link) to a dropdown
/// </summary>
Vue.directive('dropdown', {
bind(el, binding)
{
console.info(el, binding);
},
update(el, binding)
{
}
});