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 2c5e1dc commit 138049bCopy full SHA for 138049b
package.json
@@ -1,5 +1,5 @@
1
{
2
- "name": "vue-clock",
+ "name": "@dangvanthanh/vue-clock",
3
"version": "0.1.0",
4
"description": "Simple clock using Vue.js",
5
"author": "Dang Van Thanh <dangvanthanh@dangthanh.org>",
readme.md
@@ -4,6 +4,30 @@

6
7
+## Install
8
+
9
+```shell
10
+$ npm install @dangvanthanh/vue-clock --save
11
+```
12
13
+## Usage
14
15
+```vue
16
+<template>
17
+ <div class="app">
18
+ <vue-clock />
19
+ </div>
20
+</template>
21
22
+<script>
23
+import VueClock from '@dangvanthanh/vue-clock';
24
25
+export default {
26
+ components: { VueClock }
27
+}
28
+</script>
29
30
31
## License
32
33
MIT © Dang Van Thanh <dangvanthanh@dangthanh.org>
0 commit comments