# 说明
- 本表格中的公共方法,主要针对DOM进行操作。比如:滚动到指定位置、防抖、json转string等等
- 该公共方法主要为了封装项目中使用较多的方法,提升开发效率
# 代码示例
<script>
import { getSystemColor } from '@/utils'
this.bgColor = getSystemColor('--border-color-extra-light')
</script>
# DOM公共工具列表
# 内容
方法名 / 字段名 | 描述 | 传参 | 可选值 | 默认值 | 回参 |
---|---|---|---|---|---|
html2Text | 标签转为纯文本 | html | html: html | html: undefined | 格式转换后的纯文本 |
scrollTo | 滚动到指定位置 | element, to, duration | element: dom元素 ,to: Number , duration:Number | element: undefined; to: undefined; duration: undefined | / |
debounce | 防抖 | func, wait, immediate | func: function ,wait:Number , immediate: any | / | / |
json2StrStyle | json转string | style | style:json 。 | undefined | json转换后的字符串 |
getSystemColor | 获取系统主题颜色 | color | color:String 。 | undefined | 16进制颜色值 |