@tenorlab/vue-dashboard 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# @tenorlab/
|
|
1
|
+
# @tenorlab/vue-dashboard
|
|
2
2
|
|
|
3
|
-
Foundation components for creating user-configurable, high-performance dashboards in
|
|
3
|
+
Foundation components for creating user-configurable, high-performance dashboards in Vue.
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -16,15 +16,15 @@ Foundation components for creating user-configurable, high-performance dashboard
|
|
|
16
16
|
Install the package via npm or pnpm:
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
npm install @tenorlab/
|
|
19
|
+
npm install @tenorlab/vue-dashboard
|
|
20
20
|
# or
|
|
21
|
-
pnpm add @tenorlab/
|
|
21
|
+
pnpm add @tenorlab/vue-dashboard
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
## Basic Usage
|
|
25
25
|
Import the styles in your entry tsx file (usually main.tsx):
|
|
26
26
|
```typescript
|
|
27
|
-
import '@tenorlab/
|
|
27
|
+
import '@tenorlab/vue-dashboard/styles.css'
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
TODO:
|