Added login to the application to make authenticated api requests.

This commit is contained in:
krzysiej
2022-06-20 15:05:27 +02:00
parent 4536195a4c
commit 00bb86f798
13 changed files with 230 additions and 9 deletions

6
assets/js/user.js Normal file
View File

@@ -0,0 +1,6 @@
import Vue from 'vue';
import Loginform from "./components/loginform";
import store from "./store/index";
Vue.component('Loginform', Loginform);
new Vue({store}).$mount('#app');