We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
想在wepy的mixins下使用mapState
只需在mixins中引入mapState搭配store下任意state即可 例如:
import { mapState } from '@wepy/x' export default { computed: { ...mapState([ 'UserInfo' ]) } }
import Vuex from '@wepy/x' export default new Vuex.Store({ state: { UserInfo: {} } })
<script> import commonMixins from '@/mixins/common' wepy.page({ mixins: [commonMixins], }) </script>
页面this.$store为null
[期望表现] 能正常运行不报错
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
想在wepy的mixins下使用mapState
Environment
Reproduce
只需在mixins中引入mapState搭配store下任意state即可
例如:
mixins/common.js
store/index.js
对应的wpy页面引用
Observed Results
Expected Results
[期望表现]
能正常运行不报错
Relevant Code / Logs
The text was updated successfully, but these errors were encountered: