File tree Expand file tree Collapse file tree 5 files changed +21
-13
lines changed Expand file tree Collapse file tree 5 files changed +21
-13
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ const basePath = process.env.BASE_PATH || "/vue-ellipse-progress-docs/";
8
8
export default {
9
9
lang : "en-US" ,
10
10
title : "vue-ellipse-progress" ,
11
- description : "This is not my first VuePress site " ,
11
+ description : "Beautiful and smooth circular progress bars for your Vue app " ,
12
12
base : isDevMode ? "/" : basePath ,
13
13
markdown : {
14
14
code : {
@@ -23,7 +23,7 @@ export default {
23
23
} ,
24
24
} ) ,
25
25
theme : defaultTheme ( {
26
- logo : "https://vuejs.org/images/logo.png" ,
26
+ // logo: "https://vuejs.org/images/logo.png",
27
27
repo : "https://github.com/setaman/vue-ellipse-progress/tree/v2-dev" ,
28
28
repoLabel : "GitHub" ,
29
29
colorMode : "auto" ,
Original file line number Diff line number Diff line change 1
1
---
2
2
home : true
3
+ title : Home
4
+ actions :
5
+ - text : Get Started
6
+ link : /guide/
7
+ type : primary
8
+ - text : Configuration
9
+ link : /guide/options/
10
+ type : secondary
11
+ features :
12
+ - title : Beautiful progress bars
13
+ details : Flexible and smooth Vue.js plugin. Whether you require sleek progress bars or stylish loading spinners, the plugin has you covered
14
+ - title : Simplicity First
15
+ details : Designed for simplicity, offering good defaults for a quick start and equipped with flexible configuration options
16
+ - title : Without Dependencies
17
+ details : Lightweight and dependency-free, ensuring a hassle-free integration into your Vue application
18
+ footer : MIT Licensed
3
19
---
4
-
5
- ::: warning Early alpha
6
- WIP!
7
- :::
Original file line number Diff line number Diff line change @@ -28,7 +28,3 @@ Start the project and open the displayed link in your browser:
28
28
```
29
29
npm run serve
30
30
```
31
-
32
- ## Working with code
33
-
34
- // TODO
Original file line number Diff line number Diff line change @@ -19,15 +19,15 @@ initialize the component as a plugin or to import it directly.
19
19
<CodeGroupItem title =" NPM " active >
20
20
21
21
``` bash:no-line-numbers
22
- npm i vue-ellipse-progress
22
+ npm i vue-ellipse-progress@next
23
23
```
24
24
25
25
</CodeGroupItem >
26
26
27
27
<CodeGroupItem title =" Yarn " >
28
28
29
29
``` bash:no-line-numbers
30
- yarn add vue-ellipse-progress
30
+ yarn add vue-ellipse-progress@next
31
31
```
32
32
33
33
</CodeGroupItem >
Original file line number Diff line number Diff line change 4
4
5
5
| type | values | default |
6
6
| --------| ------------| ---------|
7
- | Number | any Number | |
7
+ | Number | any Number | 0 |
8
8
9
9
Defines the gap in pixels from one circle to the previous circle. It will be applied only if [ ` data ` ] ( ./data.md ) prop is used.
10
10
The gap ca be specified for each circle in the [ ` data ` ] ( ./data.md ) .
You can’t perform that action at this time.
0 commit comments