mirror of
https://github.com/tenrok/vue-form-wizard.git
synced 2026-05-17 07:49:36 +03:00
f2b6af4eee
Remove watcher from FormWizard component to avoid double beforeChange trigger Code cleanup
16 lines
380 B
JavaScript
16 lines
380 B
JavaScript
// 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}
|
|
})
|