Files
vue-three-d-mockup/docs/guide/index.md

480 B

Introduction

Installation

npm install vue-three-d-mockup

Simple usage example

<script setup> import Mockup from '../../src/Mockup.vue' import screenImage from '../assets/screen.png'; </script>

screen.png is a static asset in the public folder.

<template>
  <Mockup screen="screen.png" />
</template>

<script setup>
import Mockup from 'vue-three-d-mockup';
</script>