Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xygengcn/vue-tmnovel
简约小说移动端浏览网站
https://github.com/xygengcn/vue-tmnovel
Last synced: 9 days ago
JSON representation
简约小说移动端浏览网站
- Host: GitHub
- URL: https://github.com/xygengcn/vue-tmnovel
- Owner: xygengcn
- Created: 2020-01-15T05:49:09.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-02T12:10:20.000Z (almost 2 years ago)
- Last Synced: 2023-03-06T16:41:11.427Z (almost 2 years ago)
- Language: Vue
- Size: 2.95 MB
- Stars: 6
- Watchers: 2
- Forks: 3
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TM小说
## 简介
平时喜欢看小说,ios有爱阅可以看,奈何广告也来越多,所以简单写了一个小网站,小说资源从网络小说网站拿的,可能速度上比较慢,正在想办法缓存一下。小说就三个界面,小说书单,小说介绍,小说章节,主要是php爬取,vue前端界面,比较简单。
## 配置:
- vue:2.6.10
- vue-router:3.13
- vuex:3.12
- vant:2.4.2
- axios:0.19.1## 文件:
> http目录下的index.js修改自己的接口地址
## 源码
后端:https://github.com/xygengcn/TMNovel-Api
前端:https://github.com/xygengcn/vue-TMNovel
## DEMO:
https://tm.xygeng.cn/
## 效果图:
![效果图](images/novel.jpg)
### 初始化
```
npm install
```### 启动
```
npm start
```### ### 打包
```
npm run build
```## 问题
- 刷新问题出现404:
nginx解决:
```
location / {
try_files $uri $uri/ /index.html;
}
```