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
2222### Install as Component
2323``` js
2424import Vue from ' vue'
25-
25+ import VueNumeric from ' vue-numeric
26+
2627export default {
2728 name: ' App' ,
2829
@@ -36,10 +37,20 @@ export default {
3637```js
3738import Vue from ' vue'
3839import VueNumeric from ' vue-numeric'
39-
40+
4041Vue.use(VueNumeric)
4142```
4243
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+
4354## Usage
4455
4556
You can’t perform that action at this time.
0 commit comments