mirror of
https://github.com/tenrok/vue-form-wizard.git
synced 2026-06-03 00:44:04 +03:00
435ee42616
Move dev example to dev folder
14 lines
242 B
JavaScript
14 lines
242 B
JavaScript
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}
|
|
})
|