Component for testing
npm install rodrigopecci/vue-components
<script>
import { VueComponentTest, VueComponentAnotherTest } from "vue-components";
export default {
components: {
VueComponentTest,
VueComponentAnotherTest
}
}
</script>
<template>
<div>
<VueComponentTest param="param value" />
<VueComponentAnotherTest param="param value" />
</div>
</template>
<!-- Include after Vue -->
<!-- Local files -->
<script src="rodrigopecci/vue-component-test/dist/vue-components.js"></script>
<!-- From CDN -->
<script src="https://unpkg.com/rodrigopecci/vue-components"></script>