Skip to content

Commit 4478d4c

Browse files
author
Geirr Winnem
committed
updating docs
1 parent 50caa50 commit 4478d4c

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
<img src="./docs/Data Grid.svg" height="200" alt="logo">
33
</p>
44

5-
<h1 align="center">vue-responsive-grid-layout</h1>
5+
<h1 align="center">vue-ts-responsive-grid-layout</h1>
66

77
<h2 align="center">
8-
<a href="https://vue-responsive-grid-layout.winnem.tech" target="_blank">Documentation Website</a>
8+
<a href="https://vue-ts-responsive-grid-layout.winnem.tech" target="_blank">Documentation Website</a>
99
</h2>
1010

11-
## What is vue-responsive-grid-layout
11+
## What is vue-ts-responsive-grid-layout
1212
VUE 3 responsive grid layout is based on the original work by [JBaysolution's vue-grid-layout](https://github.com/jbaysolutions/vue-grid-layout).
1313
<br/>
1414
This new and refactored component has more features, typesafe Emits, Props and a strict linting rule setup.
@@ -54,7 +54,7 @@ This new and refactored component has more features, typesafe Emits, Props and a
5454
If you enjoyed this project — or just feeling generous, consider buying me a beer. Cheers! :beers:
5555

5656

57-
## Setting up vue-responsive-grid-layout in your project
57+
## Setting up vue-ts-responsive-grid-layout in your project
5858
[Howto](./docs/setup.md)
5959

6060
<br/>

docs/build.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ The <span style="color: green">dist/</span> folder is structured like this:
1010
```json
1111
// From package.json
1212
{
13-
"main": "dist/vue-responsive-grid-layout.umd.js",
14-
"module": "dist/vue-responsive-grid-layout.es.js",
13+
"main": "dist/vue-ts-responsive-grid-layout.umd.js",
14+
"module": "dist/vue-ts-responsive-grid-layout.es.js",
1515
"types": "dist/types/index.d.ts",
1616
"files": [
1717
"dist/*",

docs/setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Setting up vue-responsive-grid-layout in your project
1+
## Setting up vue-ts-responsive-grid-layout in your project
22

33
#### Installing external dependencies
44
```

docs/testing-package.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ npm pack
1313
<br/>
1414

1515
```
16-
npm install vue-responsive-grid-layout.tgz
16+
npm install vue-ts-responsive-grid-layout.tgz
1717
```
1818

19-
Where <span style="color: green">vue-responsive-grid-layout</span> is the name of your package.
19+
Where <span style="color: green">vue-ts-responsive-grid-layout</span> is the name of your package.

vitepress-docs/.vitepress/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export default defineConfig({
4141
// algolia: {
4242
// appId: '',
4343
// apiKey: '',
44-
// indexName: 'vue-responsive-grid-layout',
44+
// indexName: 'vue-ts-responsive-grid-layout',
4545
// },
4646

4747
// nav

vitepress-docs/guide/installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ title: Installation
77

88
## NPM
99
```
10-
npm install vue-responsive-grid-layout --save
10+
npm install vue-ts-responsive-grid-layout --save
1111
```
1212

1313
## Yarn
1414
```
15-
yarn add vue-responsive-grid-layout
15+
yarn add vue-ts-responsive-grid-layout
1616
```
1717

1818
## Import the package
1919

2020
```typescript
21-
import VueResponsiveGridLayout from 'vue-responsive-grid-layout';
21+
import VueResponsiveGridLayout from 'vue-ts-responsive-grid-layout';
2222
```
2323

2424
Add to other Vue components using Options api.
@@ -37,6 +37,6 @@ Add to other Vue components using Composition api.
3737

3838
```html
3939
<script setup>
40-
import { GridItem, GridLayout } from 'vue-responsive-grid-layout';
40+
import { GridItem, GridLayout } from 'vue-ts-responsive-grid-layout';
4141
</script>
4242
```

vitepress-docs/guide/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ title: Introduction
66
---
77

88

9-
# What is vue-responsive-grid-layout?
9+
# What is vue-ts-responsive-grid-layout?
1010
A responsive grid layout component for creating advance dashboard's.

0 commit comments

Comments
 (0)