UNPKG

@websanova/vue-auth

Version:

A simple light-weight authentication library for Vue.js

19 lines (15 loc) 363 B
import Vue from 'vue'; import http from './http' import store from './store' import router from './router' import config from './config' import App from './pages/Index.vue'; Vue.config.productionTip = false; new Vue({ el: '#app', http: http, store: store, router: router, config: config, render: h => h(App) });