├── LICENSE.txt ├── README.md ├── generator ├── index.js └── template │ ├── README.md │ ├── nuxt.config.js │ └── src │ ├── assets │ └── README.md │ ├── components │ ├── AppLogo.vue │ └── README.md │ ├── layouts │ ├── README.md │ └── default.vue │ ├── middleware │ └── README.md │ ├── pages │ ├── README.md │ └── index.vue │ ├── plugins │ └── README.md │ ├── static │ ├── README.md │ └── favicon.ico │ └── store │ └── README.md ├── index.js └── package.json /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/vue-cli-plugin-nuxt-starter-template/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/vue-cli-plugin-nuxt-starter-template/HEAD/README.md -------------------------------------------------------------------------------- /generator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/vue-cli-plugin-nuxt-starter-template/HEAD/generator/index.js -------------------------------------------------------------------------------- /generator/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/vue-cli-plugin-nuxt-starter-template/HEAD/generator/template/README.md -------------------------------------------------------------------------------- /generator/template/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/vue-cli-plugin-nuxt-starter-template/HEAD/generator/template/nuxt.config.js -------------------------------------------------------------------------------- /generator/template/src/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/vue-cli-plugin-nuxt-starter-template/HEAD/generator/template/src/assets/README.md -------------------------------------------------------------------------------- /generator/template/src/components/AppLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/vue-cli-plugin-nuxt-starter-template/HEAD/generator/template/src/components/AppLogo.vue -------------------------------------------------------------------------------- /generator/template/src/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/vue-cli-plugin-nuxt-starter-template/HEAD/generator/template/src/components/README.md -------------------------------------------------------------------------------- /generator/template/src/layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/vue-cli-plugin-nuxt-starter-template/HEAD/generator/template/src/layouts/README.md -------------------------------------------------------------------------------- /generator/template/src/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/vue-cli-plugin-nuxt-starter-template/HEAD/generator/template/src/layouts/default.vue -------------------------------------------------------------------------------- /generator/template/src/middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/vue-cli-plugin-nuxt-starter-template/HEAD/generator/template/src/middleware/README.md -------------------------------------------------------------------------------- /generator/template/src/pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/vue-cli-plugin-nuxt-starter-template/HEAD/generator/template/src/pages/README.md -------------------------------------------------------------------------------- /generator/template/src/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/vue-cli-plugin-nuxt-starter-template/HEAD/generator/template/src/pages/index.vue -------------------------------------------------------------------------------- /generator/template/src/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/vue-cli-plugin-nuxt-starter-template/HEAD/generator/template/src/plugins/README.md -------------------------------------------------------------------------------- /generator/template/src/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/vue-cli-plugin-nuxt-starter-template/HEAD/generator/template/src/static/README.md -------------------------------------------------------------------------------- /generator/template/src/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/vue-cli-plugin-nuxt-starter-template/HEAD/generator/template/src/static/favicon.ico -------------------------------------------------------------------------------- /generator/template/src/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/vue-cli-plugin-nuxt-starter-template/HEAD/generator/template/src/store/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = (api, options) => { 2 | } 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andoshin11/vue-cli-plugin-nuxt-starter-template/HEAD/package.json --------------------------------------------------------------------------------