2
0
mirror of https://github.com/tenrok/vue-form-wizard.git synced 2026-06-01 06:44:04 +03:00

Move example to dev-example folder

Remove watcher from FormWizard component to avoid double beforeChange trigger
Code cleanup
This commit is contained in:
cristi
2017-04-23 22:45:19 +03:00
parent 7c39f53908
commit f2b6af4eee
9 changed files with 69 additions and 57 deletions
+15
View File
@@ -0,0 +1,15 @@
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App.vue'
import FormWizard from '../src/index'
Vue.use(FormWizard)
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
template: '<App/>',
components: {App}
})