Vuex: Basic

When is it reactive?

by mattoconnell408

HTML

<script src="https://rawgit.com/yyx990803/vue/master/dist/vue.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vuex/2.3.1/vuex.js"></script>
<div id="app">
  <p>$store.state.text</p>
</div>

Babel + JSX

Vue.use(Vuex);

const vm = new Vue({
  el: '#app',
});