1.0.1 • Published 5 years ago

@inventsable/panelify v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

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

npm.io

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>