Vue Body Map is an interactive body map component built in Vue that you can pull into your projects.
Use node package manager to install.
npm install vue-body-map
Pull the package into your existing components.
import BodyMap from 'vue-body-map'
export default {
components: {
BodyMap
},
}
Use the component in your template.
<template>
<body-map colour="red" width="560" height="500" />
</template>