@inventsable/panelify
v1.0.1
Published
Vue wrapper for a pseudo-panel element to display UI mocks
Downloads
2
Readme
panelify
🔨 Under Construction 🔨
Custom Vue component to display Adobe panel mocks inside your browser, allow users to play with a mock version of your UI in good faith as a Try Before You Buy policy.
See a demo After Effects panel
Intended Installation
npm install @inventsable/panelify
Intended Usage
Will do write up on iframe contents later
<template>
<panelify
extName="camAssist"
appName="AEFT"
src="https://camera-manager-panel.web.app/#/"
/>
</template>
<script>
// Must explicitly import the panelify element (and conversely import the shim in your iframe environment)
import { panelify } from "@/components/panelify";
export default {
name: "home",
components: {
panelify
}
};
</script>