본문 바로가기
영화 검색 사이트

[영화 검색 사이트] Vuex Helpers(mapState)

by mikrw 2023. 2. 12.

https://vuex.vuejs.org/guide/state.html#the-mapstate-helper

 

State | Vuex

State Single State Tree Vuex uses a single state tree - that is, this single object contains all your application level state and serves as the "single source of truth." This also means usually you will have only one store for each application. A single st

vuex.vuejs.org

 

About.vue

mapState

  import { mapState } from 'vuex'

  export default {
    computed: {
      ...mapState('about', [
        'image',
        'name',
        'blog'
      ])
    }
  }