From 928741802dd25a2d26bf8f0b899b05185332bedb Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Muhammed=20Erdin=C3=A7?=
<33763365+muhammederdinc@users.noreply.github.com>
Date: Thu, 20 Jul 2023 16:34:35 +0300
Subject: [PATCH] docs: change yarn script
---
README.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index 2dc7150..1acbb83 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
## Installation
```sh
-yarn add @rocket-ui/vue
+yarn add @rocketui/vue
```
## Usage
@@ -16,7 +16,7 @@ import { createApp } from 'vue'
import App from './App.vue'
// Import the Styles
-import '@rocket-ui/vue/dist/style.css'
+import '@rocketui/vue/dist/style.css'
createApp(App).mount('#app')
```
@@ -25,7 +25,7 @@ Then you can use the components in your `App.vue` file:
```vue