diff --git a/public/images/logo/richtextEditor.png b/public/images/logo/richtextEditor.png
new file mode 100644
index 0000000..f76a446
Binary files /dev/null and b/public/images/logo/richtextEditor.png differ
diff --git a/src/components/Home/Home.vue b/src/components/Home/Home.vue
index 3d00ca8..11f4e1d 100644
--- a/src/components/Home/Home.vue
+++ b/src/components/Home/Home.vue
@@ -58,6 +58,9 @@ onMounted(() => {
+
+
+
diff --git a/src/components/Tools/TextEdit/TextEdit.vue b/src/components/Tools/TextEdit/TextEdit.vue
new file mode 100644
index 0000000..d0519b1
--- /dev/null
+++ b/src/components/Tools/TextEdit/TextEdit.vue
@@ -0,0 +1,102 @@
+
+
+
+
+
+
+
+
+
+ 复制HTML
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/Tools/tools.ts b/src/components/Tools/tools.ts
index c8de1b9..b186f43 100644
--- a/src/components/Tools/tools.ts
+++ b/src/components/Tools/tools.ts
@@ -186,6 +186,15 @@ export function getToolsCate() {
cateId: 3,
cate: '文本处理',
},
+ {
+ id: 1,
+ title: '在线文本编辑/HTML获取',
+ logo: '/images/logo/richtextEditor.png',
+ desc: '在线富文本编辑, html实时预览,在线编辑文本,文本编辑获取html',
+ url: '/textEdit/',
+ cateId: 3,
+ cate: '文本处理'
+ },
]
},
{
diff --git a/src/router/router.ts b/src/router/router.ts
index cd8356e..1230d3f 100644
--- a/src/router/router.ts
+++ b/src/router/router.ts
@@ -421,6 +421,16 @@ export const constantRoute = [
description: '提供在线css格式化,在线css压缩工具',
}
},
+ {
+ path: '/TextEdit',
+ component: () => import('@/components/Tools/TextEdit/TextEdit.vue'),
+ name: 'TextEdit',
+ meta: {
+ title: "在线文本编辑/HTML获取",
+ keywords: '文本编辑,富文本预览,在线编辑文本,文本编辑获取html',
+ description: '在线富文本编辑, html实时预览,在线编辑文本,文本编辑获取html',
+ }
+ },
// 关于
{
path: '/about',