-
+
-
+
H1
@@ -164,18 +173,28 @@ function insertImage(): void {
-
- “ ”
+
+
+
+
+ "
+
+
+
+
+
-
-
+
+
+
+
diff --git a/apps/admin-web/src/main.ts b/apps/admin-web/src/main.ts
index 2f45264..50bda37 100644
--- a/apps/admin-web/src/main.ts
+++ b/apps/admin-web/src/main.ts
@@ -1,3 +1,4 @@
+import { createFromIconfontCN } from "@ant-design/icons-vue";
import { QueryClient, VueQueryPlugin } from "@tanstack/vue-query";
import { createApp } from "vue";
import {
@@ -65,6 +66,13 @@ const queryClient = new QueryClient({
});
const app = createApp(App);
+
+const IconFont = createFromIconfontCN({
+ // 需要替换为你自己真实项目的 js 地址,才能显示出你的 '#icon-line-global_undo'。
+ scriptUrl: "//at.alicdn.com/t/c/font_5154382_bf9lssq7ar.js",
+});
+app.component("IconFont", IconFont);
+
app.component("ATextarea", Input.TextArea);
[