1
0
mirror of synced 2025-03-22 16:03:54 +03:00
Justin Schroeder c219633ebf
Adds an example to the project
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
2018-03-14 09:49:40 -05:00

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)
})