Skip to content

Commit d3e6ec9

Browse files
committed
fix: Add FeathersVuexInputWrapper to the VuePlugin
The Form Wrapper was getting registered, properly, but the Input Wrapper was missing.
1 parent 3f91c47 commit d3e6ec9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/vue-plugin/vue-plugin.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ eslint
66
import FeathersVuexFind from '../FeathersVuexFind'
77
import FeathersVuexGet from '../FeathersVuexGet'
88
import FeathersVuexFormWrapper from '../FeathersVuexFormWrapper'
9+
import FeathersVuexInputWrapper from '../FeathersVuexInputWrapper'
910
import FeathersVuexPagination from '../FeathersVuexPagination'
1011
import { globalModels } from '../service-module/global-models'
1112

@@ -20,6 +21,7 @@ export const FeathersVuex = {
2021
Vue.component('FeathersVuexFind', FeathersVuexFind)
2122
Vue.component('FeathersVuexGet', FeathersVuexGet)
2223
Vue.component('FeathersVuexFormWrapper', FeathersVuexFormWrapper)
24+
Vue.component('FeathersVuexInputWrapper', FeathersVuexInputWrapper)
2325
Vue.component('FeathersVuexPagination', FeathersVuexPagination)
2426
}
2527
}

0 commit comments

Comments
 (0)