├── .eslintrc.js ├── .gitignore ├── README.md ├── assets └── README.md ├── components ├── README.md └── author.vue ├── content └── posts │ ├── 1.md │ └── 2.md ├── layouts ├── README.md ├── default.vue └── slug.vue ├── middleware └── README.md ├── nuxt.config.js ├── package.json ├── pages ├── README.md ├── _slug │ └── index.vue └── index.vue ├── plugins └── README.md ├── static ├── README.md └── favicon.ico ├── store ├── README.md └── index.js └── styles └── base.less /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreliem/vuecms/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | dist 4 | .nuxt 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreliem/vuecms/HEAD/README.md -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreliem/vuecms/HEAD/assets/README.md -------------------------------------------------------------------------------- /components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreliem/vuecms/HEAD/components/README.md -------------------------------------------------------------------------------- /components/author.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreliem/vuecms/HEAD/components/author.vue -------------------------------------------------------------------------------- /content/posts/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreliem/vuecms/HEAD/content/posts/1.md -------------------------------------------------------------------------------- /content/posts/2.md: -------------------------------------------------------------------------------- 1 | # Hello Foo Bar 2 | 3 | Just another example of a 2nd blog post! -------------------------------------------------------------------------------- /layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreliem/vuecms/HEAD/layouts/README.md -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreliem/vuecms/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /layouts/slug.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreliem/vuecms/HEAD/layouts/slug.vue -------------------------------------------------------------------------------- /middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreliem/vuecms/HEAD/middleware/README.md -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreliem/vuecms/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreliem/vuecms/HEAD/package.json -------------------------------------------------------------------------------- /pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreliem/vuecms/HEAD/pages/README.md -------------------------------------------------------------------------------- /pages/_slug/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreliem/vuecms/HEAD/pages/_slug/index.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreliem/vuecms/HEAD/pages/index.vue -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreliem/vuecms/HEAD/plugins/README.md -------------------------------------------------------------------------------- /static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreliem/vuecms/HEAD/static/README.md -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreliem/vuecms/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreliem/vuecms/HEAD/store/README.md -------------------------------------------------------------------------------- /store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreliem/vuecms/HEAD/store/index.js -------------------------------------------------------------------------------- /styles/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreliem/vuecms/HEAD/styles/base.less --------------------------------------------------------------------------------