<script>const app = new Vue({el: '#app',data:{results:{}},mounted(){axios.get('{{ route('request.data') }}').then(response=>this.results = response.data)}});</script><span class="company-value" v-text
2018-06-09
我不知道如何调用它。我的对象中有两个函数:login: (credentials) => {console.log('im in login user');axios.post('/api/auth/login', credentials).then(res => {console.log(res.data);return res.data;}).then((toStore) => {this.s
2019-07-22
一切正常,我也得到了数据,但我得到了这个 javascript 错误。我有以下网络请求 data: {patient: null}methods: {//call methods to add patientssetPatient(patient) {this.patient = patient;},}//network request in navigation guardasync be
2021-02-02