An open API service indexing awesome lists of open source software.

https://github.com/zients/vue-pokedex


https://github.com/zients/vue-pokedex

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# 寶可夢圖鑑/Pokedex

---

此為 Vue 做成的 SPA 頁面。

並串接 Pokemon 的 Restful API。

使用者可以藉由輸入寶可夢編號,取得寶可夢的樣子與基本資料。

請先安裝 modules 來使用。

This is a SPA developed by Vue.

Concatenate Pokemon's Restful API.

Users can enter the Pokemon index to get the pokemon info.

First, you need to install the modules.

```
$ npm install
```

# 寶可夢查詢(圖鑑版本)/Pokedex

---

# 寶可夢查詢/PokeDictionary

---

下為 router 設定。

```
Vue router setting:

routes: [
{
path: "/",
name: "Home",
component: Home
},
{
path: "/Pokedex",
name: "Pokedex",
component: Pokedex
},
{
path: "/PokeDict",
name: "PokeDict",
component: PokeDict
}
]

```