2
0
mirror of https://github.com/tenrok/vue-form-wizard.git synced 2026-06-10 20:42:25 +03:00
Files
vue-form-wizard/src/main.js
T
2017-04-15 23:06:11 +03:00

16 lines
373 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 TabWizard from './index'
Vue.use(TabWizard)
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
template: '<App/>',
components: {App}
})