diff --git a/README.md b/README.md
index 4c883b1..a7c5677 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,153 @@
-# vue-inheritance
-vue-inheritance
+# Vue Inheritance
+
+### Introduction
+
+vue-inheritance is an npm package designed for Vue.js projects. It provides a convenient way to manage and reuse component properties and methods. Leveraging Vue's extension and mixin capabilities, this package simplifies the definition and application of component attributes, making it more modular.
+
+**Installation**
+
+In your Vue project, install vue-inheritance using the following command:
+
+```bash
+npm install vue-inheritance
+```
+
+**Usage**
+
+In your Vue project, import VueInheritance:
+
+```
+import { VueInheritance } from 'vue-inheritance'
+```
+
+**Define Interface Modules**
+
+Define one or more props, methods, computed modules.
+
+```javascript
+// IControl
+export const IControl = {
+ props: {
+ disabled: {
+ type: Boolean,
+ default: false
+ }
+ }
+}
+
+// ITheme
+export const ITheme = {
+ props: {
+ theme: {
+ type: String,
+ default: 'Standard'
+ }
+ }
+}
+
+// ILoading
+export const ILoading = {
+ props: {
+ isLoading: {
+ type: Boolean,
+ default: false
+ }
+ }
+}
+
+
+//IButton
+export const ILoading = VueInheritance
+ .extend(IControl)
+ .extend(ITheme)
+ .extend({
+ methods: {
+ onClick(e) {
+ this.$emit('click', e)
+ }
+ }
+ })
+```
+
+**Implement**
+
+In your specific component, use the VueInheritance implement method to apply Interface modules.
+
+```javascript
+// Button.vue
+export default {
+ extends: VueInheritance.implement(IControl).implement(ITheme),
+ methods: {
+ onClick(e) {
+ this.$emit('click', e)
+ }
+ }
+}
+
+// or
+
+export default {
+ extends: IButton
+}
+```
+
+**Extend**
+
+In another component, use the extend method to inherit an existing component and the implement method to apply additional attribute modules.
+
+```javascript
+// LoadingButton.vue
+import Button from './Button.vue'
+
+export default {
+ extends: VueInheritance.extend(Button).implement(ILoading)
+}
+```
+
+**Examples**
+Button with IControl and ITheme
+
+```vue
+
+
+
+
+
+```
+
+Loading Button with ILoading
+
+```vue
+
+
+
+
+
+```
+
+This way, you can define interface modules based on project requirements and flexibly apply and reuse them in your components.
+
diff --git a/package.json b/package.json
index d64b375..78bb153 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "vue-inheritance",
- "version": "1.0.1-beta.2",
+ "version": "1.0.1-beta.3",
"description": "vue inheritance",
"main": "src/index.js",
"types": "src/index.d.ts",