Skip to content

Commit 5cdb852

Browse files
committed
add package.
1 parent 336a978 commit 5cdb852

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# vue-loading-screen
2+
Using to block whlie client processed work.
3+
4+
## Installation
5+
```js
6+
npm i --save vue-loading-screen
7+
```
8+
9+
## Usage
10+
```js
11+
import Vue from 'vue'
12+
import {loading} from 'vue-loading-screen'
13+
14+
Vue.use(loading)
15+
```

package.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "vue-loading-screen",
3+
"version": "1.0.0",
4+
"description": "Blocking screen while process worked",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/HELMAB/vue-loading.git"
12+
},
13+
"keywords": [
14+
"vue-loading-screen"
15+
],
16+
"author": "HEL Mab",
17+
"license": "ISC",
18+
"bugs": {
19+
"url": "https://github.com/HELMAB/vue-loading/issues"
20+
},
21+
"homepage": "https://github.com/HELMAB/vue-loading#readme"
22+
}

0 commit comments

Comments
 (0)