From afab3a98a65f7fb4f342251238ab3c329e4242dd Mon Sep 17 00:00:00 2001 From: inleft <inleft@qq.com> Date: Tue, 30 Aug 2022 18:44:23 +0800 Subject: [PATCH] 调整统计脚本渲染逻辑 新增自定义表情组件 --- src/components/swichLabel/edit.vue | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/swichLabel/edit.vue b/src/components/swichLabel/edit.vue index 220052c..fe13332 100644 --- a/src/components/swichLabel/edit.vue +++ b/src/components/swichLabel/edit.vue @@ -1,6 +1,7 @@ <template> <div class="blog-main"> - <div class="edit-main fade"> + <MyOwO v-if="1==1"></MyOwO> + <div v-else class="edit-main fade"> <div class="edit-info"> <div class="edit-info-body blog-container "> 配置项 @@ -396,6 +397,8 @@ queryBlogArticleType } from '../../api/blogArticleType.js' + import MyOwO from '../common/MyOwO.vue' + import VueMarkdown from 'vue-markdown' const exp1 = "###   十里平湖 \r> ##### (卢照邻·唐) \r> 化自《长安古意》 \r* 十里平湖霜满天 \r* 寸寸青丝愁华年 \r* 对月形单望相护 \r* 只羡鸳鸯不羡仙 \r![](http://blog.inleft.com/photo/example.jpg)\n\n"; @@ -405,7 +408,8 @@ export default { components: { - VueMarkdown + VueMarkdown, + MyOwO, }, beforeMount() { queryBlogArticleType({}).then((res) => { -- Gitblit v1.9.1