# emphasize-words

> 文字标红

Latest version **1.0.1** (published 2023-01-11) · ISC license · 0 weekly downloads

## Install

```sh
npm install emphasize-words
pnpm add emphasize-words
yarn add emphasize-words
bun add emphasize-words
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2023-01-11 |
| First published | 2023-01-10 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | liuqiannanyezi |
| Maintainers | liuqiannan |

## Links

- npm: https://www.npmjs.com/package/emphasize-words
- Repository: https://github.com/liuqiannanyezi/emphasize-world.js
- Homepage: https://github.com/liuqiannanyezi/emphasize-world.js#readme
- Issues: https://github.com/liuqiannanyezi/emphasize-world.js/issues
- npm.io page: https://npm.io/package/emphasize-words

## Recent versions

- 1.0.1 (latest) — 2023-01-11
- 1.0.0 — 2023-01-10

## README

d# emphasize

# Installation
```js
$ npm install emphasize-words
```

# Usage

Web components 有两种引入方式（vue 中）：

1.在 vue 的主渲染文件 index.html 使用 script 标签将刚刚创建的 Web components 的 js 文件引入：
```js
<script src="./emphasize-words" defer></script>
```
2.在 vue 的入口文件 main.js 或某个独立 vue 组件中使用 ES module 的形式引入：
```js
import './emphasize-words';
```
3.在vue中使用
```html
<template>
    <div>
        <emphasize-words :text="text" :keyWords="keyWords" markColor="red"></emphasize-words>
    </div>
</template>
```
```js
<script>
export default {
    data() {
        return {
            text: '文案本意是指放书的桌子，后来指在桌子上写字的人。现在指的是公司或企业中从事文字工作的职位，就是以文字来表现已经制定的创意策略。文案是一个与广告创意先后相继呈现的表现过程、发展过程与深化过程， 多存在于广告公司，企业宣传与新闻策划工作等。',
            keyWords: ['文案', '新闻策划', '广告'],
        }
    },
}
</script>
```

---
_Source: https://npm.io/package/emphasize-words · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
