/*! For license information please see 3514.55bf98ba.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["3514"],{98868:function(s,n,t){"use strict";t.r(n);var a=t("80681");let e=["innerHTML"];n.default={setup:()=>({html:""}),render:()=>((0,a.wg)(),(0,a.iD)("div",{class:"van-doc-markdown-body",innerHTML:'

Highlight

\n

Intro

\n

Highlight the specified text content. Please upgrade vant to >= v4.8.0 before using this component.

\n

Install

\n

Register component globally via app.use, refer to Component Registration for more registration ways.

\n
import { createApp } from 'vue';\nimport { Highlight } from 'vant';\n\nconst app = createApp();\napp.use(Highlight);\n
\n

Usage

\n

Basic Usage

\n

You can specify keywords to be highlighted with keywords and source text with source-string.

\n
<van-highlight :keywords="keywords" :source-string="text" />\n
\n
export default {\n  setup() {\n    const text =\n      'Take your time and be patient. Life itself will eventually answer all those questions it once raised for you.';\n    const keywords = 'questions';\n\n    return {\n      text,\n      keywords,\n    };\n  },\n};\n
\n

Multiple Keywords

\n

If you need to specific more than one keywords, you can pass in keywords as an array.

\n
<van-highlight :keywords="keywords" :source-string="text" />\n
\n
export default {\n  setup() {\n    const text =\n      'Take your time and be patient. Life itself will eventually answer all those questions it once raised for you.';\n    const keywords = ['time', 'life', 'answer'];\n\n    return {\n      text,\n      keywords,\n    };\n  },\n};\n
\n

Custom Class

\n

Set the highlight-class of the highlighted tag to customize the style.

\n
<van-highlight\n  :keywords="keywords"\n  :source-string="text"\n  highlight-class="custom-class"\n/>\n
\n
export default {\n  setup() {\n    const text =\n      'Take your time and be patient. Life itself will eventually answer all those questions it once raised for you.';\n    const keywords = 'life';\n\n    return {\n      text,\n      keywords,\n    };\n  },\n};\n
\n
.custom-class {\n  color: red;\n}\n
\n

API

\n

Props

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
auto-escapeWhether to automatically escapebooleantrue
case-sensitiveIs case sensitivebooleanfalse
highlight-classClass name of the highlight elementstring-
highlight-tagHTML Tag of highlighted elementstringspan
keywordsExpected highlighted textstring | string[]-
source-stringSource textstring-
tagHTML Tag of root elementstringdiv
unhighlight-classClass name of the unhighlight elementstring-
unhighlight-tagHTML Tag of unhighlighted elementstringspan
\n

Types

\n

The component exports the following type definitions:

\n
import type { HighlightProps, HighlightThemeVars } from 'vant';\n
\n

Theming

\n

CSS Variables

\n

The component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDefault ValueDescription
--van-highlight-tag-colorvar(--van-primary-color)Color of highlighted text
\n
'},null,8,e))}}}]);