From f80a406f9382aeae6e673f524f2406db610b3e4a Mon Sep 17 00:00:00 2001 From: Huang <596417202@qq.com> Date: Sun, 9 Oct 2022 14:52:40 +0800 Subject: [PATCH] =?UTF-8?q?perf-=20=E4=BC=98=E5=8C=96=E4=BB=A3=E7=A0=81,?= =?UTF-8?q?=E5=87=8F=E5=B0=91=E4=BD=93=E7=A7=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 4 +- src/components/FontAwesomeIcon/index.vue | 17 +++---- .../FontAwesomeIcon/scss/_core.scss | 2 - .../FontAwesomeIcon/scss/brands.scss | 2 +- .../FontAwesomeIcon/scss/duotone.scss | 2 +- .../FontAwesomeIcon/scss/fontawesome.scss | 2 +- .../FontAwesomeIcon/scss/light.scss | 3 +- .../FontAwesomeIcon/scss/regular.scss | 3 +- .../FontAwesomeIcon/scss/sharp-solid.scss | 3 +- .../FontAwesomeIcon/scss/solid.scss | 2 +- src/components/FontAwesomeIcon/scss/thin.scss | 3 +- src/demo/example/fontAwesomeIcon/index.vue | 13 +++-- src/pages/index/index.vue | 4 +- src/utils/fonts.ts | 49 +++++++++++++++---- 14 files changed, 72 insertions(+), 37 deletions(-) diff --git a/src/App.vue b/src/App.vue index 4ca7aec..9bf3936 100644 --- a/src/App.vue +++ b/src/App.vue @@ -3,11 +3,13 @@ import { useAuthStore } from '@/state/modules/auth'; import { removeInterceptor, setupInterceptors } from '@/utils/interceptors'; import { useRouterStore } from '@/state/modules/router'; + /* #ifdef MP-WEIXIN || MP-ALIPAY */ import { dynamicLoadFontFace } from '@/utils/fonts'; + /* #endif */ onLaunch(() => { console.log('App Launch'); - /** 微信小程序和阿里小程序动态远程加载font awesome icon 字体 **/ + /** 微信小程序和阿里小程序动态远程加载字体 **/ /* #ifdef MP-WEIXIN || MP-ALIPAY */ dynamicLoadFontFace(); /* #endif */ diff --git a/src/components/FontAwesomeIcon/index.vue b/src/components/FontAwesomeIcon/index.vue index 1981986..e74ee90 100644 --- a/src/components/FontAwesomeIcon/index.vue +++ b/src/components/FontAwesomeIcon/index.vue @@ -137,18 +137,15 @@ };