From 73dcc76ec82a7c915f79bc118351798fe3562790 Mon Sep 17 00:00:00 2001 From: RogerWork Date: Tue, 12 Sep 2023 08:48:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BA=86=E4=B8=80=E4=B8=AA?= =?UTF-8?q?=E4=B9=A6=E4=B8=AD=E7=9A=84=E5=BC=95=E7=94=A8=E9=94=99=E8=AF=AF?= =?UTF-8?q?=EF=BC=8C=E5=AE=8C=E6=88=90=E4=BA=86=E4=B8=80=E4=B8=AAhello-vue?= =?UTF-8?q?=E7=9A=84=E7=A4=BA=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- demo/hello-vue.html | 36 ++++++++++++++++++++++++++++++++++++ src/main.js | 2 +- 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 demo/hello-vue.html 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)