/vue-html-viewer

Package that transforms html to view-able string and vice-versa

Primary LanguageVueMIT LicenseMIT

GitHub repo size npm GitHub issues GitHub GitHub package.json version

vue-html-viewer

Setup

In order to add the package to your application, install it with npm

npm install vue-html-viewer --save

and then include it in your Vue component like this

import HtmlPreview from 'vue-html-viewer';

How to use

The HtmlPreview component uses Slots in order to render your HTML. To use the component, simply import it in your Vue Component and then provide the respective HTML like this

<HtmlPreview>
 <div class="input">
      <a>Hello</a>
  </div>
</HtmlPreview>

The visual representation will be the following:

Image of the HTML viewer

You can view the HTML via the Switch button

Image of the HTML viewer