diff --git a/LICENSE b/LICENSE
index 70baf45..aa88d8a 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2016 weibt
+Copyright (c) 2016 weibangtuo
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..0589be3
--- /dev/null
+++ b/README.md
@@ -0,0 +1,69 @@
+# Vue Tree View Component
+
+ Support `Vue.js` 1.0+
+
+## Usage
+
+Add the following required resources.
+
+```html
+
+
+
+
+
+```
+
+Add the component in your vue view.
+
+```html
+
+
+
+
+```
+
+## Node Options
+
+```javascript
+{
+ name: 'Node Name',
+ title: 'Node Tag title attr',
+ isParent: true, //
+ isOpen: true, // Control node to fold or unfold
+ icon: 'fa fa-folder', // Or other custom icons call by class name
+ openedIcon: 'fa fa-folder-open', // [option] For parent. Show when isOpen == true, show icon if it's null or empty
+ closedIcon: 'fa fa-folder', // [option] For parent. Show when isOpen != true, show icon if it's null or empty
+ children: [], // for parent node only
+ buttons: [ // []
+ {
+ title: 'icon button tag title attr', //[option]
+ icon: 'fa fa-edit',
+ click: function (node) { //[option]
+ //
+ }
+ }
+ //...
+ ]
+}
+```
+
+
+
+
+## License
+
+Copyright (c) 2016 weibangtuo. Under MIT License.
diff --git a/demo/demo-vue1.html b/demo/demo-vue1.html
new file mode 100644
index 0000000..c15181a
--- /dev/null
+++ b/demo/demo-vue1.html
@@ -0,0 +1,19 @@
+
+
+
+
+ Vue Tree
+
+
+
+
+
+
{{title}}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/demo/demo-vue2.html b/demo/demo-vue2.html
new file mode 100644
index 0000000..54e802b
--- /dev/null
+++ b/demo/demo-vue2.html
@@ -0,0 +1,19 @@
+
+
+
+
+ Vue Tree
+
+
+
+
+