diff --git a/demo/hello-vue.html b/demo/hello-vue.html
new file mode 100644
index 0000000..d8809a1
--- /dev/null
+++ b/demo/hello-vue.html
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+ Hello-Vue
+
+
+
+
+
+
+
{{ title }}
+
点我
+
计数 {{ count }}
+
+
+
+
+
diff --git a/src/main.js b/src/main.js
index 61bee5d..e00fa98 100644
--- a/src/main.js
+++ b/src/main.js
@@ -1,6 +1,6 @@
import {createApp} from 'vue'
import ElementPlus from 'element-plus' // 完整引入Element-Plus
-import 'element-plus/lib/theme-chalk/index.css' // 引入样式文件
+import 'element-plus/dist/index.css' // 引入样式文件
import App from './App.vue'
const app = createApp(App)