一个分享WordPress、Zblog、Emlog、Typecho等主流博客的教程网站!
当前位置:网站首页 > 编程知识 > 正文

小程序component使用app.wxss

作者:xlnxin发布时间:2025-02-16分类:编程知识浏览:42


导读:在默认情况下,小程序component是读取不了app.wxss的全局样式的。/* 组件 custom-component.js */Compon...

在默认情况下,小程序component是读取不了app.wxss的全局样式的。

/* 组件 custom-component.js */
Component({
  options: {
    styleIsolation: 'apply-shared' //isolated(默认), apply-shared, shared
  }
})

方法二

/* 组件 custom-component.js */
Component({
  options: {
    addGlobalClass: true,
  }
})

标签:程序小程序js