├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── README.md ├── assets ├── README.md └── scss │ ├── _settings.scss │ └── app.scss ├── components ├── AppLogo.vue └── README.md ├── layouts ├── README.md └── default.vue ├── middleware └── README.md ├── nuxt.config.js ├── package.json ├── pages ├── README.md └── index.vue ├── plugins └── README.md ├── static ├── README.md └── favicon.ico └── store └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kball/nuxt-foundation-demo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kball/nuxt-foundation-demo/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kball/nuxt-foundation-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kball/nuxt-foundation-demo/HEAD/README.md -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kball/nuxt-foundation-demo/HEAD/assets/README.md -------------------------------------------------------------------------------- /assets/scss/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kball/nuxt-foundation-demo/HEAD/assets/scss/_settings.scss -------------------------------------------------------------------------------- /assets/scss/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kball/nuxt-foundation-demo/HEAD/assets/scss/app.scss -------------------------------------------------------------------------------- /components/AppLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kball/nuxt-foundation-demo/HEAD/components/AppLogo.vue -------------------------------------------------------------------------------- /components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kball/nuxt-foundation-demo/HEAD/components/README.md -------------------------------------------------------------------------------- /layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kball/nuxt-foundation-demo/HEAD/layouts/README.md -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kball/nuxt-foundation-demo/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kball/nuxt-foundation-demo/HEAD/middleware/README.md -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kball/nuxt-foundation-demo/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kball/nuxt-foundation-demo/HEAD/package.json -------------------------------------------------------------------------------- /pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kball/nuxt-foundation-demo/HEAD/pages/README.md -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kball/nuxt-foundation-demo/HEAD/pages/index.vue -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kball/nuxt-foundation-demo/HEAD/plugins/README.md -------------------------------------------------------------------------------- /static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kball/nuxt-foundation-demo/HEAD/static/README.md -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kball/nuxt-foundation-demo/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kball/nuxt-foundation-demo/HEAD/store/README.md --------------------------------------------------------------------------------