npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

vue-nl2br

v1.1.2

Published

A vue component that turns new lines into line breaks.

Readme

vue-nl2br

DEPRECATED — No longer maintained

This package is no longer maintained. Vue 2 reached End of Life on December 31, 2023, and modern CSS makes this component unnecessary in virtually all cases.

Use CSS white-space: pre-wrap; instead. See the Migration section below.

main workflow

A vue component which turns new lines into line breaks.

Migration

In modern browsers, vue-nl2br can be replaced with a single CSS property: white-space: pre-wrap;.

Before

<nl2br tag="p" :text="`myLine1\nmyLine2`" class-name="foo bar" />

After

<p class="foo bar" style="white-space: pre-wrap;">{{ `myLine1\nmyLine2` }}</p>

Or with a CSS class (assuming text contains \n characters):

.nl2br {
  white-space: pre-wrap;
}
<p class="nl2br">{{ text }}</p>

Why pre-wrap instead of pre?

Historically, white-space: pre; was sometimes considered insufficient because it disables line wrapping (see Issue #7). white-space: pre-wrap; solves this by preserving line breaks while still allowing automatic wrapping for long lines.

Notes on subtle behavior differences

white-space: pre-wrap; is not a strictly bit-for-bit replacement for vue-nl2br. Two minor differences are worth knowing:

  • Whitespace preservation: pre-wrap also preserves consecutive spaces and tabs in the source text. vue-nl2br only converts \n into <br> and lets the browser collapse other whitespace as usual.
  • Copy/paste behavior: text rendered with <br> and text rendered with pre-wrap may behave slightly differently when users copy the content out of the page.

For the vast majority of use cases — displaying user-generated text with line breaks — these differences are negligible.


The sections below document the legacy API of vue-nl2br for existing users.

Requirement

Installation

npm install --save vue-nl2br

Usage

<nl2br tag="p" :text="`myLine1\nmyLine2`" class-name="foo bar" />

is rendered to

<p class="foo bar">myLine1<br>myLine2</p>

(1) Global registration

https://vuejs.org/v2/guide/components.html#Registration

import Vue from 'vue'
import Nl2br from 'vue-nl2br'

Vue.component('nl2br', Nl2br)

(2) Local registration

https://vuejs.org/v2/guide/components.html#Local-Registration

// MyComponent.vue

<template>
  <nl2br tag="p" :text="`myLine1\nmyLine2`" />
</template>

<script>
import Nl2br from 'vue-nl2br'

export default {
  name: 'MyComponent',
  components: {
    Nl2br,
  },
  // ...
}
</script>

Props

  • tag: HTML tag name which is passed to createElement function
    • Type: String
    • Required: true
  • text: Text in the tag.
    • Type: String
    • Default: null
  • className: HTML class name(s)
    • Type: String
    • Required: false

Note: when text property is empty or null, it renders an empty tag. ex) <p></p>.

If you prefer to render nothing at all, use v-if directive:

<nl2br v-if="myText" tag="p" :text="myText" />

License

MIT