🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# 添加CSS this.importTheCss(str) 将CSS推加载到页面。 | 参数名 | 类型 | 必填 | 说明| | --- | --- |--- | --- | | str| string| 是 | css样式 | ### 示例 ``` <div class="he">我是节点0</div> <script type="text/javascript"> new Bigfoot({ data: {}, async mounted() { this.importTheCss(`.he{font-size: 30px;color: aquamarine;}`) }, }) </script> ```