08335 / hivui-platform-template
hivui平台项目模板
Newer
Older
hivui-platform-template / project / hivuiLogin / index.js
// import Vue from 'vue'
import App from './App.vue'  
import router from './router'

// import ElementUI from 'element-ui';
import "hi-ui/lib/hi-ui.css";
import 'font-awesome/css/font-awesome.css'
import store from './store'

Vue.config.productionTip = false
new Vue({
  router,
  store,
  render: h => h(App)
}).$mount('#app')