bencodezen / vue-enterprise-boilerplate

An ever-evolving, very opinionated architecture and dev environment for new Vue SPA projects using Vue CLI.
7.77k stars 1.32k forks source link

Missing username/password in doc #106

Closed JavaPantry closed 5 years ago

JavaPantry commented 5 years ago

I could not find any trace of username/password in doc or source. How I could login?

Mike-Loffland commented 5 years ago

https://github.com/chrisvfritz/vue-enterprise-boilerplate/blob/master/src/router/views/login.vue

JavaPantry commented 5 years ago

I would like to know what to enter in username field and password field.

Mike-Loffland commented 5 years ago

The actual backend login process needs to be implemented by the developer. Chris stubs out an example login action using Axios in a Vuex “auth” module. But, it is only there to exemplify the pattern.

https://github.com/chrisvfritz/vue-enterprise-boilerplate/blob/master/src/state/modules/auth.js

JavaPantry commented 5 years ago

Got it! Thank you.

chrisvfritz commented 5 years ago

I just added some notes about this to the test doc, as well as a placeholder for those inputs in development to help people out. 🙂