File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ $ npm install vue-numeric --save
22
22
### Install as Component
23
23
``` js
24
24
import Vue from ' vue'
25
-
25
+ import VueNumeric from ' vue-numeric
26
+
26
27
export default {
27
28
name: ' App' ,
28
29
@@ -36,10 +37,20 @@ export default {
36
37
```js
37
38
import Vue from ' vue'
38
39
import VueNumeric from ' vue-numeric'
39
-
40
+
40
41
Vue.use(VueNumeric)
41
42
```
42
43
44
+ ### Install via CDN
45
+ ```html
46
+ <script src="https://unpkg.com/vue"></script>
47
+ <script src="https://unpkg.com/vue-numeric"></script>
48
+
49
+ <script>
50
+ Vue.use(VueNumeric.default)
51
+ </script>
52
+ ```
53
+
43
54
## Usage
44
55
45
56

You can’t perform that action at this time.
0 commit comments