In the next few pages, you will be provided with some examples. In order to execute these examples, you need to create an HTML file as follows:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vuex condensed example</title>
</head>
<body>
<div id="app"></div>
<script src="https://unpkg.com/vuex@3.0.1/dist/vuex.min.js"></script>
<script src="https://unpkg.com/vue@2.5.13/dist/vue.min.js"></script>
<script>
Vue.use(Vuex);
// Add code from examples here
</script>
</body>
</html>
By copying the example code inside the <script> tag, you can run it and see the results. Almost every example code can be found in the Git repository of this book, under the /chapter-2/ folder.
...