# 区域高亮提示

## 导入使用
```code[javascript]
import seContentHighlightTip from "ss-universal-client-web/comp/widget/su-content-highlight-tip";
```

### 基础用法

:::demo 
```html
<template>
    <div>
        <su-content-highlight-tip ref="seContentHighlightTip">
           高亮区域
        </su-content-highlight-tip>
    </div>
</template>
<script>
// import seContentHighlightTip from "ss-universal-client-web/comp/widget/su-content-highlight-tip";
export default { 
    components: { seContentHighlightTip },
     mounted() {
        this.$refs.seContentHighlightTip.startTip();
    },
    methods: {
        
    }
}
</script>
```
:::

### Attributes
| 参数      | 说明          | 类型      | 可选值                           | 默认值  |
|---------- |-------------- |---------- |--------------------------------  |-------- |
| glitter     | 是否闪烁 |Boolean  | -	 | true |
| delay     | 定义区域高亮的延迟时间；0代表常亮，不自动消失 |Number  | -	 | 5000 |
| block     | display:block 块级元素 宽度父级适应 |Boolean  | -	 | false |
	

### Methods

| 方法名称 | 说明 | 参数 | 返回值
|---------- |-------- |---------- |---------- |
| startTip() | 显示高亮提示 | -- | -- |
| stopTip() | 隐藏高亮提示 | -- | -- |

### Slot

| Name | Description |
|------|--------|
| — | 描述 |
| default | 内容区域 |
