···11+# Created by .ignore support plugin (hsz.mobi)
22+### Node template
33+# Logs
44+/logs
55+*.log
66+npm-debug.log*
77+yarn-debug.log*
88+yarn-error.log*
99+1010+# Runtime data
1111+pids
1212+*.pid
1313+*.seed
1414+*.pid.lock
1515+1616+# Directory for instrumented libs generated by jscoverage/JSCover
1717+lib-cov
1818+1919+# Coverage directory used by tools like istanbul
2020+coverage
2121+2222+# nyc test coverage
2323+.nyc_output
2424+2525+# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
2626+.grunt
2727+2828+# Bower dependency directory (https://bower.io/)
2929+bower_components
3030+3131+# node-waf configuration
3232+.lock-wscript
3333+3434+# Compiled binary addons (https://nodejs.org/api/addons.html)
3535+build/Release
3636+3737+# Dependency directories
3838+node_modules/
3939+jspm_packages/
4040+4141+# TypeScript v1 declaration files
4242+typings/
4343+4444+# Optional npm cache directory
4545+.npm
4646+4747+# Optional eslint cache
4848+.eslintcache
4949+5050+# Optional REPL history
5151+.node_repl_history
5252+5353+# Output of 'npm pack'
5454+*.tgz
5555+5656+# Yarn Integrity file
5757+.yarn-integrity
5858+5959+# dotenv environment variables file
6060+.env
6161+6262+# parcel-bundler cache (https://parceljs.org/)
6363+.cache
6464+6565+# next.js build output
6666+.next
6767+6868+# nuxt.js build output
6969+.nuxt
7070+7171+# Nuxt generate
7272+dist
7373+7474+# vuepress build output
7575+.vuepress/dist
7676+7777+# Serverless directories
7878+.serverless
7979+8080+# IDE / Editor
8181+.idea
8282+8383+# Service worker
8484+sw.*
8585+8686+# macOS
8787+.DS_Store
8888+8989+# Vim swap files
9090+*.swp
+20
nuxt/README.md
···11+# nuxt
22+33+## Build Setup
44+55+```bash
66+# install dependencies
77+$ yarn install
88+99+# serve with hot reload at localhost:3000
1010+$ yarn dev
1111+1212+# build for production and launch server
1313+$ yarn build
1414+$ yarn start
1515+1616+# generate static project
1717+$ yarn generate
1818+```
1919+2020+For detailed explanation on how things work, check out [Nuxt.js docs](https://nuxtjs.org).
+7
nuxt/assets/README.md
···11+# ASSETS
22+33+**This directory is not required, you can delete it if you don't want to use it.**
44+55+This directory contains your un-compiled assets such as LESS, SASS, or JavaScript.
66+77+More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/assets#webpacked).
···11+# COMPONENTS
22+33+**This directory is not required, you can delete it if you don't want to use it.**
44+55+The components directory contains your Vue.js Components.
66+77+_Nuxt.js doesn't supercharge these components._
···11+# LAYOUTS
22+33+**This directory is not required, you can delete it if you don't want to use it.**
44+55+This directory contains your Application Layouts.
66+77+More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/views#layouts).
···11+# MIDDLEWARE
22+33+**This directory is not required, you can delete it if you don't want to use it.**
44+55+This directory contains your application middleware.
66+Middleware let you define custom functions that can be run before rendering either a page or a group of pages.
77+88+More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/routing#middleware).
···11+# PAGES
22+33+This directory contains your Application Views and Routes.
44+The framework reads all the `*.vue` files inside this directory and creates the router of your application.
55+66+More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/routing).
···11+# PLUGINS
22+33+**This directory is not required, you can delete it if you don't want to use it.**
44+55+This directory contains Javascript plugins that you want to run before mounting the root Vue.js application.
66+77+More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/plugins).
+11
nuxt/static/README.md
···11+# STATIC
22+33+**This directory is not required, you can delete it if you don't want to use it.**
44+55+This directory contains your static files.
66+Each file inside this directory is mapped to `/`.
77+Thus you'd want to delete this README.md before deploying to production.
88+99+Example: `/static/robots.txt` is mapped as `/robots.txt`.
1010+1111+More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/assets#static).
nuxt/static/favicon.ico
This is a binary file and will not be displayed.
+10
nuxt/store/README.md
···11+# STORE
22+33+**This directory is not required, you can delete it if you don't want to use it.**
44+55+This directory contains your Vuex Store files.
66+Vuex Store option is implemented in the Nuxt.js framework.
77+88+Creating a file in this directory automatically activates the option in the framework.
99+1010+More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/vuex-store).
+9
nuxt/test/Logo.spec.js
···11+import { mount } from '@vue/test-utils'
22+import Logo from '@/components/Logo.vue'
33+44+describe('Logo', () => {
55+ test('is a Vue instance', () => {
66+ const wrapper = mount(Logo)
77+ expect(wrapper.vm).toBeTruthy()
88+ })
99+})