技術ブログ

(技術系中心)基本自分用備忘録なので、あくまで参考程度でお願いします。

2020-06-12から1日間の記事一覧

Vuexの使いかた

Vuexの使いかた 具体的な利用方法の備忘録 概念理解はこちら参照 state ■ Vue.store import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) export default new Vuex.Store({ state: { message: "hogehogeMAX" }, mutations: { }, actions: { }, get…