/*! 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 the specified text content. Please upgrade vant
to >= v4.8.0 before using this component.
Register component globally via app.use
, refer to Component Registration for more registration ways.
import { createApp } from 'vue';\nimport { Highlight } from 'vant';\n\nconst app = createApp();\napp.use(Highlight);\n
\nYou can specify keywords to be highlighted with keywords
and source text with source-string
.
<van-highlight :keywords="keywords" :source-string="text" />\n
\nexport 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
\nIf you need to specific more than one keywords, you can pass in keywords
as an array.
<van-highlight :keywords="keywords" :source-string="text" />\n
\nexport 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
\nSet the highlight-class
of the highlighted tag to customize the style.
<van-highlight\n :keywords="keywords"\n :source-string="text"\n highlight-class="custom-class"\n/>\n
\nexport 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
\nAttribute | \nDescription | \nType | \nDefault | \n
---|---|---|---|
auto-escape | \nWhether to automatically escape | \nboolean | \ntrue | \n
case-sensitive | \nIs case sensitive | \nboolean | \nfalse | \n
highlight-class | \nClass name of the highlight element | \nstring | \n- | \n
highlight-tag | \nHTML Tag of highlighted element | \nstring | \nspan | \n
keywords | \nExpected highlighted text | \nstring | string[] | \n- | \n
source-string | \nSource text | \nstring | \n- | \n
tag | \nHTML Tag of root element | \nstring | \ndiv | \n
unhighlight-class | \nClass name of the unhighlight element | \nstring | \n- | \n
unhighlight-tag | \nHTML Tag of unhighlighted element | \nstring | \nspan | \n
The component exports the following type definitions:
\nimport type { HighlightProps, HighlightThemeVars } from 'vant';\n
\nThe component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.
\nName | \nDefault Value | \nDescription | \n
---|---|---|
--van-highlight-tag-color | \nvar(--van-primary-color) | \nColor of highlighted text | \n