Nova Vue Bridge
Install
npm install nova-vue-bridge
Usage
The Nova
component requires the props name
and data
name
is the registered view in Hypernova.data
is 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>