2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-16 09:10:33 +03:00
- change currentSelection to mutableValue
- change currentOptions to mutableOptions
- change showLoading to mutableLoading
- add default onChange function that emits an input event
	- allows the use of v-model syntax on the component
- since spies on props throw warnings because they are now immutable, refactor tests so spies aren't required

todo:
- update docs
- 1 failing test from inject-loader issue
This commit is contained in:
Jeff Sagal
2016-12-20 10:53:49 -08:00
parent 4a7614e368
commit f5e3e25dc0
7 changed files with 199 additions and 143 deletions
+2 -2
View File
@@ -19,8 +19,8 @@ module.exports = {
'src': path.resolve(__dirname, '../src'),
'assets': path.resolve(__dirname, '../docs/assets'),
'mixins': path.resolve(__dirname, '../src/mixins'),
'components': path.resolve(__dirname, '../docs/components'),
'vue$': 'vue/dist/vue.js'
'components': path.resolve(__dirname, '../src/components'),
'vue$': 'vue/dist/vue.common.js',
}
},
resolveLoader: {