├── .babelrc ├── .editorconfig ├── .gitignore ├── README.md ├── index.html ├── package.json ├── resources ├── ability.js └── routes.js ├── server.js ├── src ├── App.vue ├── Post.vue ├── ability-plugin.js └── main.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonygore/vue-casl-demo/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonygore/vue-casl-demo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonygore/vue-casl-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonygore/vue-casl-demo/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonygore/vue-casl-demo/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonygore/vue-casl-demo/HEAD/package.json -------------------------------------------------------------------------------- /resources/ability.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonygore/vue-casl-demo/HEAD/resources/ability.js -------------------------------------------------------------------------------- /resources/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonygore/vue-casl-demo/HEAD/resources/routes.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonygore/vue-casl-demo/HEAD/server.js -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonygore/vue-casl-demo/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/Post.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonygore/vue-casl-demo/HEAD/src/Post.vue -------------------------------------------------------------------------------- /src/ability-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonygore/vue-casl-demo/HEAD/src/ability-plugin.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonygore/vue-casl-demo/HEAD/src/main.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonygore/vue-casl-demo/HEAD/webpack.config.js --------------------------------------------------------------------------------