UNPKG

vue-select

Version:

Everything you wish the HTML <select> element could do, wrapped up into a lightweight, extensible Vue component.

13 lines (10 loc) 172 B
let idCount = 0 /** * Dead simple unique ID implementation. * Thanks lodash! * @return {number} */ function uniqueId() { return ++idCount } export default uniqueId