https://github.com/zients/vue-pokedex
https://github.com/zients/vue-pokedex
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zients/vue-pokedex
- Owner: zients
- Created: 2019-09-02T06:03:23.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-02-10T19:15:24.000Z (over 4 years ago)
- Last Synced: 2026-03-23T18:30:57.584Z (3 months ago)
- Language: JavaScript
- Size: 1.35 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
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
}
]
```