Documentation update, and example idea and initial contribution by: Martin Bramwell <mhb.warehouseman@gmail.com> * Adds an example form and updates documentation to reflect curried function
13 lines
213 B
JavaScript
13 lines
213 B
JavaScript
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import store from '../store'
|
|
import formulate from 'vue-formulate'
|
|
|
|
Vue.use(formulate)
|
|
|
|
window.example = new Vue({
|
|
el: '#app',
|
|
store,
|
|
render: h => h(App)
|
|
})
|