vue-pancake-icons 6.0.0 → 6.0.1

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -1,7 +1,25 @@
1
1
  # Install
2
2
  npm install vue-pancake-icons
3
3
 
4
- # Use
4
+ # Use 1
5
+ in component
6
+ <script>
7
+ import { ArrowUp } from "vue-pancake-icons"
8
+ export default {
9
+ components: { ArrowUp }
10
+ }
11
+ </script>
12
+ <template>
13
+ <ArrowUp/>
14
+ </template>
15
+
16
+ # Use 2
17
+ multi component in app.js
18
+ import { ArrowUp } from "vue-pancake-icons"
19
+ app.use(ArrowUp)
20
+
21
+ # Use 3
22
+ all component global in app.js
5
23
  import VuePancakeIcons from 'vue-pancake-icons'
6
24
  app.use(VuePancakeIcons)
7
25