2
0
mirror of https://github.com/tenrok/vue-form-wizard.git synced 2026-06-19 09:30:32 +03:00

Add build setup from vue-cli webpack template

This commit is contained in:
cristijora
2017-04-15 23:05:30 +03:00
parent 011774fd34
commit f5a3339ac8
34 changed files with 963 additions and 31 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 TabWizard from './../src/index';
Vue.use(TabWizard);
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
template: '<App/>',
components: { App }
});