2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-07 07:12:23 +03:00
Files
vue-select/src/dev.js
T
2017-03-22 18:35:12 -07:00

35 lines
784 B
JavaScript

import Vue from 'vue'
import vSelect from './components/Select.vue'
import countries from 'docs/data/advanced.js'
import debounce from 'lodash/debounce'
import resource from 'vue-resource'
Vue.use(resource)
Vue.component('v-select', vSelect)
Vue.config.devtools = true
/* eslint-disable no-new */
new Vue({
el: '#app',
data: {
placeholder: "placeholder",
value: null,
options: countries,
ajaxRes: []
},
methods: {
search(search, loading) {
loading(true)
this.getRepositories(search, loading, this)
},
getRepositories: debounce((search, loading, vm) => {
vm.$http.get(`https://api.github.com/search/repositories?q=${search}`).then(res => {
vm.ajaxRes = res.data.items
loading(false)
})
}, 250)
}
})