Files
mixtape/zero.Web.UI/App/directives/dropdown.js
T
2020-10-15 14:10:33 +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)
{
}
});