We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5db027a commit ec64d1eCopy full SHA for ec64d1e
README.md
@@ -46,6 +46,21 @@ Vue.use(VueEllipseProgress);
46
// Vue.use(VueEllipseProgress, "vep"); you can define a name and use the plugin like <vep/>
47
```
48
49
+Usage direct as component:
50
+```vue
51
+<template>
52
+ <vue-ellipse-progress :progress="50" />
53
+</template>
54
+<script>
55
+import { VueEllipseProgress } from "vue-ellipse-progress";
56
+
57
+export default {
58
+ name: "MyComponent",
59
+ components: { VueEllipseProgress },
60
+};
61
+</script>
62
+```
63
64
### CDN
65
Use this option where you have a global Vue.js instance available. You can customize and get the bundled and minified
66
component from [JSDelivr](https://www.jsdelivr.com/package/npm/vue-ellipse-progress).
0 commit comments