├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lib ├── module.js └── templates │ ├── auth.js │ ├── middleware.js │ ├── plugin.js │ ├── service.js │ ├── store.js │ └── verbose.js ├── package.json └── test ├── fixture ├── nuxt.config.js └── pages │ └── index.vue └── module.test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustojs/nuxt-feathers-vuex/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustojs/nuxt-feathers-vuex/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustojs/nuxt-feathers-vuex/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustojs/nuxt-feathers-vuex/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustojs/nuxt-feathers-vuex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustojs/nuxt-feathers-vuex/HEAD/README.md -------------------------------------------------------------------------------- /lib/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustojs/nuxt-feathers-vuex/HEAD/lib/module.js -------------------------------------------------------------------------------- /lib/templates/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustojs/nuxt-feathers-vuex/HEAD/lib/templates/auth.js -------------------------------------------------------------------------------- /lib/templates/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustojs/nuxt-feathers-vuex/HEAD/lib/templates/middleware.js -------------------------------------------------------------------------------- /lib/templates/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustojs/nuxt-feathers-vuex/HEAD/lib/templates/plugin.js -------------------------------------------------------------------------------- /lib/templates/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustojs/nuxt-feathers-vuex/HEAD/lib/templates/service.js -------------------------------------------------------------------------------- /lib/templates/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustojs/nuxt-feathers-vuex/HEAD/lib/templates/store.js -------------------------------------------------------------------------------- /lib/templates/verbose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustojs/nuxt-feathers-vuex/HEAD/lib/templates/verbose.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustojs/nuxt-feathers-vuex/HEAD/package.json -------------------------------------------------------------------------------- /test/fixture/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustojs/nuxt-feathers-vuex/HEAD/test/fixture/nuxt.config.js -------------------------------------------------------------------------------- /test/fixture/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustojs/nuxt-feathers-vuex/HEAD/test/fixture/pages/index.vue -------------------------------------------------------------------------------- /test/module.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustojs/nuxt-feathers-vuex/HEAD/test/module.test.js --------------------------------------------------------------------------------