Nova Vue Bridge
Install
npm install nova-vue-bridge
Usage
The Nova component requires the props name and data
nameis the registered view in Hypernova.datais the data necessary to render the view.
<template>
<div class="container">
<nova name="Example" :data="{ title: 'Ara Framework' }" />
</div>
</template>
<script>
import Nova from 'nova-vue-bridge'
export default {
components: {
Nova
},
}
</script>
