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>