We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73778f1 commit a7e904aCopy full SHA for a7e904a
src/index.js
@@ -1,18 +1,18 @@
1
import number from './component.vue'
2
import vNumber from './directive'
3
-import Options from './options'
+import options from './options'
4
import NumberFormat from './number-format'
5
6
export {
7
number,
8
vNumber,
9
- Options,
+ options,
10
NumberFormat
11
}
12
13
function install(Vue, globalOptions) {
14
if (globalOptions) {
15
- Object.assign(Options, globalOptions)
+ Object.assign(options, globalOptions)
16
17
Vue.directive('number', vNumber)
18
Vue.component('number', number)
0 commit comments