diff --git a/src/components/article/EditArticle.vue b/src/components/article/EditArticle.vue
index 96275485..88acc0f6 100644
--- a/src/components/article/EditArticle.vue
+++ b/src/components/article/EditArticle.vue
@@ -70,6 +70,8 @@ watch(() => props.article, val => {
function renewSections() {
if (editArticle.text.trim()) {
renewSectionTexts(editArticle)
+ editArticle.sections = []
+ return
if (editArticle.useTranslateType === TranslateType.custom) {
failCount = renewSectionTranslates(editArticle, editArticle.textCustomTranslate)
}
diff --git a/src/components/list/DictItem.vue b/src/components/list/DictItem.vue
index f9a58cbd..40e72770 100644
--- a/src/components/list/DictItem.vue
+++ b/src/components/list/DictItem.vue
@@ -1,6 +1,6 @@
+
+
+
+ test
+
+
+
+
\ No newline at end of file
diff --git a/src/router.ts b/src/router.ts
index 603e928e..04fa4455 100644
--- a/src/router.ts
+++ b/src/router.ts
@@ -1,11 +1,13 @@
import * as VueRouter from 'vue-router'
import Practice from "@/pages/practice/index.vue";
import Dict from '@/pages/dict'
+import Test from "@/pages/test.vue";
const routes: any[] = [
{path: '/practice', component: Practice},
{path: '/dict', name: 'dict', component: Dict},
- {path: '/', redirect: '/practice'},
+ {path: '/test', name: 'test', component: Test},
+ {path: '/', redirect: '/test'},
]
const router = VueRouter.createRouter({