+
+
+
diff --git a/mynuxt/plugins/README.md b/mynuxt/plugins/README.md
new file mode 100644
index 0000000..ca1f9d8
--- /dev/null
+++ b/mynuxt/plugins/README.md
@@ -0,0 +1,7 @@
+# PLUGINS
+
+**This directory is not required, you can delete it if you don't want to use it.**
+
+This directory contains Javascript plugins that you want to run before mounting the root Vue.js application.
+
+More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/plugins).
diff --git a/mynuxt/static/README.md b/mynuxt/static/README.md
new file mode 100644
index 0000000..cf00435
--- /dev/null
+++ b/mynuxt/static/README.md
@@ -0,0 +1,11 @@
+# STATIC
+
+**This directory is not required, you can delete it if you don't want to use it.**
+
+This directory contains your static files.
+Each file inside this directory is mapped to `/`.
+Thus you'd want to delete this README.md before deploying to production.
+
+Example: `/static/robots.txt` is mapped as `/robots.txt`.
+
+More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/assets#static).
diff --git a/mynuxt/static/favicon.ico b/mynuxt/static/favicon.ico
new file mode 100644
index 0000000..3632d0c
Binary files /dev/null and b/mynuxt/static/favicon.ico differ
diff --git a/mynuxt/store/README.md b/mynuxt/store/README.md
new file mode 100644
index 0000000..1972d27
--- /dev/null
+++ b/mynuxt/store/README.md
@@ -0,0 +1,10 @@
+# STORE
+
+**This directory is not required, you can delete it if you don't want to use it.**
+
+This directory contains your Vuex Store files.
+Vuex Store option is implemented in the Nuxt.js framework.
+
+Creating a file in this directory automatically activates the option in the framework.
+
+More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/vuex-store).
diff --git a/mynuxt/store/counter.js b/mynuxt/store/counter.js
new file mode 100644
index 0000000..69e6af6
--- /dev/null
+++ b/mynuxt/store/counter.js
@@ -0,0 +1,9 @@
+export const state = () => ({
+ value: 0
+});
+
+export const mutations = {
+ increment(state) {
+ state.value += 1;
+ }
+};