Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

docs: change yarn script #206

Merged
merged 1 commit into from
Jul 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Installation

```sh
yarn add @rocket-ui/vue
yarn add @rocketui/vue
```

## Usage
Expand All @@ -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')
```
Expand All @@ -25,7 +25,7 @@ Then you can use the components in your `App.vue` file:

```vue
<script setup>
import { Button } from '@rocket-ui/vue'
import { Button } from '@rocketui/vue'
</script>

<template>
Expand Down