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 9a18c45 commit c08f734Copy full SHA for c08f734
src/index.js
@@ -1,17 +1,19 @@
1
-import component from './component.vue'
2
-import directive from './directive'
3
-import options from './options'
+import Number from './component.vue'
+import VNumber from './directive'
+import Options from './options'
4
+import NumberFormat from './number-format'
5
6
export {
- component,
7
- directive,
8
- options
+ Number,
+ VNumber,
9
+ Options,
10
+ NumberFormat
11
}
12
13
export default {
14
install(app, config) {
15
if (config) {
- Object.assign(options, config)
16
+ Object.assign(Options, config)
17
18
app.directive('number', directive)
19
app.component('number', component)
0 commit comments