JSFiddle - React, Tailwind, and code Playground

by Christian Gambardella

HTML

<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="https://unpkg.com/[email protected]/dist/vuex.js"></script>

JavaScript

Vue.use(Vuex)

const store = new Vuex.Store({
  strict: true,
  actions: {
  	foo () {
	    return false
    }
  }
})

const response = store.dispatch('foo')
console.log('response', response)