import axios from 'axios'
export function load (command, { result, callback, data, method }) {
axios({
url: `${process.env.VUE_APP_API_URL}/${command}`,
method: method || 'post',
data: data || {}
}).then(response => {
if (result) {
result.data = response.data
result.status = response.status
result.success = response.data.success
}
}).catch(error => {
if (error.response) {
if (result) {
result.data = error.response.data
result.status = error.response.status
}
} else if (error.request) {
if (result) {
result.error = error.message
}
}
}).then(() => {
if (callback) callback()
})
}
import { load } from '@/lib.js'
Vue.prototype.load = load
var vm = new Vue(...)
myLoginRoutine({ this, this }).then...
?
Видеокарта NVIDIA Corporation GT218 [GeForce 210], стоит на шине PCI-E, к ней подключен монитор. На мамке тоже есть видеовыходы.
Почему в логах снова ссылки на nouveau? Драйвер ведь установлен nvidia-340...