File tree Expand file tree Collapse file tree 2 files changed +47
-1
lines changed Expand file tree Collapse file tree 2 files changed +47
-1
lines changed Original file line number Diff line number Diff line change 1
1
# vue-loading-spinner
2
2
3
- > Loading spinner collection for Vuejs
3
+ > The collection of spinner for Vuejs
4
+
5
+ ## Installation
6
+
7
+ ``` bash
8
+ npm install --save vue-loading-spinner
9
+ ```
10
+ or
11
+
12
+ ``` bash
13
+ yarn add vue-loading-spinner
14
+ ```
15
+
16
+ ## Usage
17
+
18
+ ``` vue
19
+ <template>
20
+ <div id="app">
21
+ <cube-spin></cube-spin>
22
+ </div>
23
+ </template>
24
+
25
+ <script>
26
+ import CubeSpin from 'vue-loading-spinner/components/Cube'
27
+ export default {
28
+ components: {
29
+ Cube
30
+ }
31
+ }
32
+ </script>
33
+
34
+ ```
4
35
5
36
## Build Setup
6
37
Original file line number Diff line number Diff line change
1
+ <template >
2
+ <div id =" app" >
3
+ <cube-spin ></cube-spin >
4
+ </div >
5
+ </template >
6
+
7
+ <script >
8
+ import CubeSpin from ' /Cube'
9
+ export default {
10
+ components: {
11
+ Cube
12
+ }
13
+ }
14
+ </script >
15
+
1
16
<template >
2
17
<div id =" app" >
3
18
<div class =" header" >
You can’t perform that action at this time.
0 commit comments