├── .gitignore
├── README.md
├── components
├── Banner.vue
├── Feed.vue
└── NavBar.vue
├── layouts
└── default.vue
├── logo.png
├── netlify.toml
├── nuxt.config.js
├── package.json
├── pages
├── article
│ └── _slug.vue
├── editor.vue
├── index.vue
├── login.vue
├── profile
│ └── _username.vue
├── register.vue
└── settings.vue
├── plugins
└── axios.js
├── static
└── favicon.ico
└── store
└── index.js
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | package-lock.json
3 | yarn.lock
4 | .nuxt
5 | dist
6 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # 
2 |
3 | [](http://realworld.io)
4 |
5 | > ### [Nuxt.js](https://nuxtjs.org) codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the [RealWorld](https://github.com/gothinkster/realworld) spec and API.
6 |
7 | ### [Demo](http://realworld-nuxt.netlify.com) [RealWorld](https://github.com/gothinkster/realworld)
8 |
9 | This codebase was created to demonstrate a fully fledged fullstack application built with **[Nuxt.js](https://nuxtjs.org)** including CRUD operations, authentication, routing, pagination, and more.
10 |
11 | We've gone to great lengths to adhere to the **[Nuxt.js](https://nuxtjs.org)** community styleguides & best practices.
12 |
13 | For more information on how to this works with other frontends/backends, head over to the [RealWorld](https://github.com/gothinkster/realworld) repo.
14 |
15 | # How it works
16 |
17 | > TODO: Describe the general architecture of your app here
18 |
19 | # Getting started
20 |
21 | ```bash
22 | git clone https://github.com/anishkny/realworld-nuxt
23 | cd realworld-nuxt
24 | npm install
25 | npm run dev
26 | ```
27 |
--------------------------------------------------------------------------------
/components/Banner.vue:
--------------------------------------------------------------------------------
1 |
2 |