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 872c274 commit 596320bCopy full SHA for 596320b
README.md
@@ -19,6 +19,27 @@ Input field component to display currency value based on [Vue](https://vuejs.org
19
$ npm install vue-numeric --save
20
```
21
22
+### Install as Component
23
+```js
24
+import Vue from 'vue'
25
+
26
+export default {
27
+ name: 'App',
28
29
+ components: {
30
+ VueNumeric
31
+ }
32
+}
33
+```
34
35
+### Install as Plugin
36
37
38
+import VueNumeric from 'vue-numeric'
39
40
+Vue.use(VueNumeric)
41
42
43
## Usage
44
45

0 commit comments