diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..3c3629e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+node_modules
diff --git a/README.md b/README.md
index 4b8105b..1110c19 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,79 @@
-# Farris-Vue
+
+
+
+
+
+
+Farris UI Vue
+
+Farris UI Vue 是一套基于Farris Design 的 Vue3 组件库。
+
+[English](README.en.md) | 简体中文
+
+Farris 设计原则:
+- Fast : Farris UI 是一套具有急速用户体验的UI套件,Farris Data Grid 在渲染大量数据时具有高速渲染性能
+- Reliable : 我们为用户提供可靠的使用体现,对各类异常交互场景做出针对性的优化
+- Responsive : 增强的响应式设计,在组件内部提供更细腻的响应式交互
+- Intuitive : 采用直觉化的设计,向用户更准确的传达界面交互
+- Smart : 智能化的UI,满足开发智能应用的场景
+
+
+## 开始使用 Farris UI Vue
+
+### 1. 安装@farris/ui-vue
+
+```
+npm install @farris/ui-vue
+```
+
+```
+yarn add @farris/ui-vue
+```
+
+### 2. 在应用中引入 Farris UI Vue
+
+在`main.ts`文件中引入`@farris/ui-vue`。
+
+```ts
+import { createApp } from 'vue'
+import App from './App.vue'
+import Farris from '@farris/ui-vue'
+
+createApp(App).use(Farris).mount('#app')
+```
+
+### 3. 在应用中使用 Farris UI Vue
+
+在`App.vue`文件中使用 Farris UI Vue 组件。
+
+```vue
+
+
+
+```
+
+## 如何参与贡献
+
+还原你参与贡献 Farris UI Vue
+在这里你可以参与以下贡献内容:
+
+- 使用 `TypeScript` + `TSX` + `SystemJs` + `Rollup` 技术开发 Farris Vue 组件
+- 参与贡献 Farris UI 主题工具
+- 参与贡献 Farris UI 开发文档
+
+如果你决定参与贡献 Farris UI Vue,可以先从阅读我们的[贡献指南](https://vue-devui.github.io/contributing/)开始。
+
+## ✨ 贡献者
+
+感谢以下 Farris UI Vue 的贡献者
+
+
+
+
+## 开源许可
+
+[Apache License 2.0](https://gitee.com/ubml/farris-vue/blob/master/LICENSE)
diff --git a/farris_design.jpg b/farris_design.jpg
new file mode 100644
index 0000000..bdce348
Binary files /dev/null and b/farris_design.jpg differ
diff --git a/lerna.json b/lerna.json
new file mode 100644
index 0000000..3467e18
--- /dev/null
+++ b/lerna.json
@@ -0,0 +1,8 @@
+{
+ "packages": [
+ "packages/*"
+ ],
+ "version": "0.0.0",
+ "useWorkspaces": true,
+ "npmClient": "yarn"
+}
\ No newline at end of file
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..86de6d3
--- /dev/null
+++ b/package.json
@@ -0,0 +1,10 @@
+{
+ "name": "farris-vue",
+ "private": true,
+ "devDependencies": {
+ "lerna": "^4.0.0"
+ },
+ "workspaces": [
+ "packages/*"
+ ]
+}
diff --git a/packages/docs-vue/.gitignore b/packages/docs-vue/.gitignore
new file mode 100644
index 0000000..a547bf3
--- /dev/null
+++ b/packages/docs-vue/.gitignore
@@ -0,0 +1,24 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+lerna-debug.log*
+
+node_modules
+dist
+dist-ssr
+*.local
+
+# Editor directories and files
+.vscode/*
+!.vscode/extensions.json
+.idea
+.DS_Store
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
diff --git a/packages/docs-vue/.vscode/extensions.json b/packages/docs-vue/.vscode/extensions.json
new file mode 100644
index 0000000..a7cea0b
--- /dev/null
+++ b/packages/docs-vue/.vscode/extensions.json
@@ -0,0 +1,3 @@
+{
+ "recommendations": ["Vue.volar"]
+}
diff --git a/packages/docs-vue/README.md b/packages/docs-vue/README.md
new file mode 100644
index 0000000..30b15e2
--- /dev/null
+++ b/packages/docs-vue/README.md
@@ -0,0 +1,16 @@
+# Vue 3 + TypeScript + Vite
+
+This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `
+