mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-22 10:30:34 +03:00
0d62251558
- rebuild homepage at `docs/homepage`
12 lines
199 B
JavaScript
12 lines
199 B
JavaScript
import Vue from 'vue'
|
|
import vSelect from '../../src/components/Select'
|
|
|
|
import './assets/scss/home.scss'
|
|
|
|
Vue.component('v-select', vSelect);
|
|
|
|
/* eslint-disable no-new */
|
|
new Vue({
|
|
el: '#app'
|
|
});
|