index.js 203 B

1234567891011
  1. import Vue from 'vue'
  2. import router from './router'
  3. import store from './store'
  4. import App from './App'
  5. import 'assets/css/app.styl'
  6. new Vue({
  7. router,
  8. store,
  9. render: h => h(App)
  10. }).$mount('#app')