diff --git a/README.md b/README.md
index 7d7d9d0..9b00ae1 100644
--- a/README.md
+++ b/README.md
@@ -70,14 +70,14 @@ In order to register a component globally, you would typically need to import th
```js
import Vue from 'vue'
-import MarqueeSlider from 'vue-marquee-slider';
-Vue.use(MarqueeSlider)
+import VueMarqueeSlider from 'vue-marquee-slider';
+Vue.use(VueMarqueeSlider)
```
Once you have registered the component, you can use it in any of your Vue templates by using the custom element syntax:
```html
-
-
+
```
With loop:
```html
-
-
+
```
```js
@@ -129,7 +129,7 @@ Sometimes you will want to import the component separately in each individual co
This allows you to have more control over the component and tailor it specifically for each individual component's needs. Importing the component separately also allows for better organization and separation of concerns in your codebase.
```html
-
-
+
```
```js
-import MarqueeSlider from 'vue-marquee-slider';
+import VueMarqueeSlider from 'vue-marquee-slider';
export default {
components: {
- MarqueeSlider
+ VueMarqueeSlider
}
}
```
@@ -174,7 +174,7 @@ These examples can help you understand the different features and options availa
### 👉 Basic sample with images
```html
-
@@ -183,13 +183,13 @@ These examples can help you understand the different features and options availa
-
+
```
### 👉 With static width of the images
```html
-
-
+
```
### 👉 Speed & Space between items
```html
-
-
+
```
### 👉 Basic usage with text
```html
-Vue.js
Nuxt.js
vue-marquee-slider
-
+
```
-### 👉 Cards inside marquee-slider
+### 👉 Cards inside vue-marquee-slider
```html
-Some Cards
Some Cards
Some Cards
-
+
```
### 👉 Reversed direction
```html
-
-
+
```
diff --git a/package.json b/package.json
index 7f372a7..5268fbb 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "vue-marquee-slider",
"description": "Simple and easy-to-use component for Vue that allows you to create customizable marquees with just a few lines of code",
- "version": "1.0.3",
+ "version": "1.0.4",
"private": false,
"homepage": "https://vue-marquee.com/",
"author": {