Skip to content

Files

Latest commit

0043c0f · Feb 24, 2025

History

History

vue3-lighthouse-viewer

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Dec 22, 2024
Jan 6, 2025
Dec 22, 2024
Dec 22, 2024
Feb 24, 2025
Dec 22, 2024
Dec 22, 2024
Feb 24, 2025
Dec 22, 2024
Dec 22, 2024
Dec 22, 2024
Dec 23, 2024
Jan 6, 2025

vue3-lighthouse-viewer

This component is a Vue wrapper for the lighthouse-viewer. It depends on lighthouse-viewer, package that exports the original lighthouse-viewer from Google as an ES modules package.

Getting started

  1. Install using npm install vue3-lighthouse-viewer or yarn add vue3-lighthouse-viewer
  2. Import in your project:
import VueLighthouseViewer from "vue3-lighthouse-viewer";
  1. Load the component in your code as follows:
<div id="app">
    <VueLighthouseViewer :json="json" />
</div>
  1. That's all!