SL
Или нужно будет передавать в них "app" явно ?
withContext = myFunc.bind(this)
myFunc = function() { return this.axios.get('/posts') }
withContext()
Size: a a a
SL
SL
R
userEmail: user?.email
в computed
, хотя это не намного лучше выглядит). Или как по best practices тут лучше делать?R
AL
FW
R
AG
Cannot read property '$scopedSlots' of undefined
DEV
режиме нету этой ошбики, она возникает в момент сборки под продAG
AG
Failed to execute 'appendChild' on 'Node': This node type does not support this method.
AG
import Vue from 'vue';
import { mapGetters } from 'vuex';
const authdata = {
install(Vue, options) {
Vue.mixin({
computed: {
...mapGetters({
user: 'auth/user',
authenticated: 'auth/authenticated',
isadmin: 'auth/isadmin',
})
}
})
}
}
Vue.use(authdata)
P
import Vue from 'vue';
import { mapGetters } from 'vuex';
const authdata = {
install(Vue, options) {
Vue.mixin({
computed: {
...mapGetters({
user: 'auth/user',
authenticated: 'auth/authenticated',
isadmin: 'auth/isadmin',
})
}
})
}
}
Vue.use(authdata)
AG
state
и ошибка исчезлаA
AG
AG
A
A
AG