From 41ddc711f06e7135084dbf4f1b9c7967babbfe31 Mon Sep 17 00:00:00 2001 From: liuyx <1517482303@qq.com> Date: Mon, 21 Nov 2022 23:27:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9about=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- admin/src/views/about/About.vue | 100 +++++--------------------------- 1 file changed, 13 insertions(+), 87 deletions(-) diff --git a/admin/src/views/about/About.vue b/admin/src/views/about/About.vue index a919022..640a108 100644 --- a/admin/src/views/about/About.vue +++ b/admin/src/views/about/About.vue @@ -2,7 +2,7 @@ * @Author: liuyx 1517482303@qq.com * @Date: 2022-11-15 10:36:30 * @LastEditors: liuyx 1517482303@qq.com - * @LastEditTime: 2022-11-21 17:19:54 + * @LastEditTime: 2022-11-21 17:46:46 * @FilePath: \admin\src\views\about\About.vue * @Description: 关于我 的编辑 * @@ -10,45 +10,10 @@ --> @@ -56,62 +21,23 @@ import { ref } from 'vue' import { ElMessage } from 'element-plus' -const userInfo = ref({ - avatarUrl: 'https://liuyxcc.github.io/img/avatar.png', - name: 'Liuyx', - sentence: '过去与未来,存在于每个当下。', - state: '抓住现在', - github: 'https://github.com/liuyxcc', - gitee: 'https://gitee.com/liuyxcc', - about: '' -}) +const aboutText = ref('') -const submitUserInfo = () => { +const submit = () => { ElMessage({ - message: userInfo.value, + message: aboutText.value, type: 'success' }) - console.log(userInfo.value) + console.log(aboutText.value) } - -