UNPKG

@inkline/inkline

Version:

Inkline is the Vue.js UI/UX Library built for creating your next design system

26 lines (24 loc) 702 B
export default { data () { const defaultOptions = [ { id: 1, label: 'Richard Hendricks' }, { id: 2, label: 'Bertram Gilfoyle' }, { id: 3, label: 'Dinesh Chugtai' }, { id: 4, label: 'Jared Dunn' }, { id: 5, label: 'Erlich Bachman' } ]; return { selected: null, options: defaultOptions, defaultOptions }; }, methods: { onSearch (query) { this.options = this.defaultOptions .filter((option) => { return option.label.toLowerCase().includes((query || '').toLowerCase()); }); } } };