From d9f2bb0ee107cb99324a82ec286533997794b96f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9C=E9=99=88=E4=BF=8A=E5=85=B4=E2=80=9D?=
<“1274804914@qq.com”>
Date: Sun, 14 May 2023 21:22:39 +0800
Subject: [PATCH] 123
---
.../20230508-\345\270\203\345\261\200.md" | 116 ++++++++++++++++++
.../20230509-icon\345\233\276\346\240\207.md" | 13 ++
...0230511-layout\345\270\203\345\261\200.md" | 30 +++++
.../20230512-menu\350\217\234\345\215\225.md" | 16 +++
4 files changed, 175 insertions(+)
create mode 100644 "07\351\231\210\344\277\212\345\205\264/20230508-\345\270\203\345\261\200.md"
create mode 100644 "07\351\231\210\344\277\212\345\205\264/20230509-icon\345\233\276\346\240\207.md"
create mode 100644 "07\351\231\210\344\277\212\345\205\264/20230511-layout\345\270\203\345\261\200.md"
create mode 100644 "07\351\231\210\344\277\212\345\205\264/20230512-menu\350\217\234\345\215\225.md"
diff --git "a/07\351\231\210\344\277\212\345\205\264/20230508-\345\270\203\345\261\200.md" "b/07\351\231\210\344\277\212\345\205\264/20230508-\345\270\203\345\261\200.md"
new file mode 100644
index 0000000..ac3ea8d
--- /dev/null
+++ "b/07\351\231\210\344\277\212\345\205\264/20230508-\345\270\203\345\261\200.md"
@@ -0,0 +1,116 @@
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Footer
+
+
+
+
+
+
+```
diff --git "a/07\351\231\210\344\277\212\345\205\264/20230509-icon\345\233\276\346\240\207.md" "b/07\351\231\210\344\277\212\345\205\264/20230509-icon\345\233\276\346\240\207.md"
new file mode 100644
index 0000000..268ed3d
--- /dev/null
+++ "b/07\351\231\210\344\277\212\345\205\264/20230509-icon\345\233\276\346\240\207.md"
@@ -0,0 +1,13 @@
+```
+
+
+
+
+
+
+
+
+```
diff --git "a/07\351\231\210\344\277\212\345\205\264/20230511-layout\345\270\203\345\261\200.md" "b/07\351\231\210\344\277\212\345\205\264/20230511-layout\345\270\203\345\261\200.md"
new file mode 100644
index 0000000..a4de556
--- /dev/null
+++ "b/07\351\231\210\344\277\212\345\205\264/20230511-layout\345\270\203\345\261\200.md"
@@ -0,0 +1,30 @@
+```
+
+
+
+
+
+
+
+
+
+
+ {{ menu.title }}
+
+
+
+
+
+
+
+
+
+ {{ menu.title }}
+
+
+
+
+```
diff --git "a/07\351\231\210\344\277\212\345\205\264/20230512-menu\350\217\234\345\215\225.md" "b/07\351\231\210\344\277\212\345\205\264/20230512-menu\350\217\234\345\215\225.md"
new file mode 100644
index 0000000..802675b
--- /dev/null
+++ "b/07\351\231\210\344\277\212\345\205\264/20230512-menu\350\217\234\345\215\225.md"
@@ -0,0 +1,16 @@
+```
+import { createApp } from 'vue'
+import './style.css'
+import App from './App.vue'
+import ElementPlus from 'element-plus'
+import 'element-plus/dist/index.css'
+import * as ElementPlusIconsVue from '@element-plus/icons-vue'
+
+const app = createApp(App)
+for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
+ app.component(key, component)
+}
+
+app.use(ElementPlus)
+app.mount('#app')
+```
--
Gitee