1
0
mirror of synced 2024-11-22 21:36:04 +03:00
vue-formulario/examples/main.js

12 lines
202 B
JavaScript
Raw Normal View History

2020-03-27 16:39:47 +03:00
import Vue from 'vue'
import VueFormulate from '../src/Formulate'
import App from './App.vue'
Vue.config.productionTip = false
Vue.use(VueFormulate)
new Vue({
render: h => h(App)
}).$mount('#app')