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'
])
}
}
'영화 검색 사이트' 카테고리의 다른 글
| [영화 검색 사이트] 영화 검색 사이트 최종(github, netlify 등록) (0) | 2023.02.12 |
|---|---|
| [영화 검색 사이트] Vue Router Scroll Behavior (0) | 2023.02.12 |
| [영화 검색 사이트] 부트스트랩 Breakpoint(반응형), sass-loader (0) | 2023.02.12 |
| [영화 검색 사이트] Vue Router 404 Page Not Found (0) | 2023.02.11 |
| [영화 검색 사이트] Vue 플러그인 (0) | 2023.02.11 |