New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

emphasize-words

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

emphasize-words

文字标红

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

d# emphasize

Installation

$ npm install emphasize-words

Usage

Web components 有两种引入方式(vue 中):

1.在 vue 的主渲染文件 index.html 使用 script 标签将刚刚创建的 Web components 的 js 文件引入:

<script src="./emphasize-words" defer></script>

2.在 vue 的入口文件 main.js 或某个独立 vue 组件中使用 ES module 的形式引入:

import './emphasize-words';

3.在vue中使用

<template>
    <div>
        <emphasize-words :text="text" :keyWords="keyWords" markColor="red"></emphasize-words>
    </div>
</template>
<script>
export default {
    data() {
        return {
            text: '文案本意是指放书的桌子,后来指在桌子上写字的人。现在指的是公司或企业中从事文字工作的职位,就是以文字来表现已经制定的创意策略。文案是一个与广告创意先后相继呈现的表现过程、发展过程与深化过程, 多存在于广告公司,企业宣传与新闻策划工作等。',
            keyWords: ['文案', '新闻策划', '广告'],
        }
    },
}
</script>

FAQs

Package last updated on 11 Jan 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts