JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 22
  • Score
    100M100P100Q44118F
  • License MIT

Vue wrapper for zDog

Package Exports

  • vue-zdog

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vue-zdog) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

vue-zdog

Vue wrapper for zDog

Installation

yarn add vue-zdog

Usage

with Vue-CLI

Import components and use them in the template

<script>
import { ZIllustration, ZRect} from 'vue-zdog'

export default {
  components: {
    ZIllustration, 
    ZRect
  },
}
</script>

<template>

  <ZIllustration>
    <ZRect/>
  </ZIllustration>

</template>