开发者问题收集

[Vue 警告]:渲染时出错:“TypeError:未定义不是对象(评估‘this.$store.state’)”

2018-05-17
8505

当我使用 vuex 项目运行 vue 时,出现以下错误。

[Vue warn]: Error in render: "TypeError: undefined is not an object (evaluating 'this.$store.state')"

在我的项目中,我创建了 vuex/store.js :

import Vue from 'vue';
import Vuex from 'vuex';

Vue.use(Vuex);

export const store = new Vuex.Store({
  state:{

    user_data: null,   
    is_login: false   
  }
});

在我的 main.js 中:

从 './vuex/store.js' 导入 store

...
new Vue({
  el: '#app',
  router,
  store,
  render: h => h(App)
});
...

在我的 app.vue 中:

<template>
  <div>
    <registration></registration>
    <hr>
    <registrations></registrations>
  </div>
</template>

<script>

  import registration from './views/components/registrations/registration.vue'
  import registrations from './views/components/registrations/registrations.vue'

  export default{
    props: {

    },
    data(){
      return {
      }
    },
    components: {
      registration,
      registrations
    }
  }
</script>

在我的 registration.vue 中,我使用了 this.$store.state.user_datathis.$store.state.is_login ,错误报告如下:

<style scoped>

</style>

<template>
  <div style="margin-top: 20px">
    <h1>registration</h1>
    {{ is_login }}
    <hr>
    {{ user_data }}

  </div>
</template>

<script>

  export default{
    data(){
      return {
        msg: 'hello vue'
      }
    },
    computed: {
      is_login(){
        debugger
        return this.$store.state.is_login
      },
      user_data(){
        return this.$store.state.user_data
      }
    },
    components: {}
  }
</script>

我已经注册了Vue 中的 store ,为什么还会出现这个问题?

1个回答

在 main.js 中将

import store from './vuex/store.js' 

更改为

import {store} from './vuex/store.js' 
Mgasmi
2018-05-17