Feat 所有包升级到最新版

This commit is contained in:
shunfa.xu 2020-05-22 17:23:09 +08:00
parent d22b31bea0
commit a7de81908c
6 changed files with 65 additions and 55 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 KiB

View File

@ -1,10 +1,10 @@
<template>
<div>
<!-- 可以删掉 顶部 -->
<!-- 删除试试 顶部 -->
<HeaderCompontent></HeaderCompontent>
<!-- 渲染出口 -->
<router-view></router-view>
<!-- 可以删除 底部菜单 -->
<!-- 删除试试 底部菜单 -->
<FootComponent></FootComponent>
</div>
</template>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

17
src/mock/index.js Normal file
View File

@ -0,0 +1,17 @@
// mock data
export const data = {
success: true,
data: [{
name: "React",
id: 1,
},{
name: "Vue",
id: 2,
},{
name: "Angular",
id: 3,
},{
name: "Flutter",
id: 4,
}]
};

View File

@ -1,44 +1,37 @@
<template>
<div>
<button v-on:click="loadMore">click me</button>
<div>
<ul>
<li v-for="(item, index) in listArr" :key="index">
<a href="">{{ index }} {{ item.name }}</a>
</li>
</ul>
</div>
<div class="loading" v-if="loading">
Loading...
</div>
<ul>
<li v-for="(item, index) in listArr" :key="index">
<a href="">{{ index }} {{ item.name }}</a>
</li>
</ul>
</div>
</template>
<script>
let mock = require('../mock'); //
export default {
data: () => ({
loading: false,
listArr: [],
}),
created() {
this.loadList();
},
methods: {
loadList() {
let url = "https://api.github.com/search/code?q=addClass+in:file+language:js+repo:jquery/jquery";
fetch(url, {
method: "GET",
}).then((res) => {
const {data} = res;
console.log(res);
this.listArr = data.items;
})
.catch();
},
loadMore() {
console.log("load more");
data: () => ({
listArr: [],
page: 1,
}),
created() {
this.loadList();
},
},
},
methods: {
loadList(page) {
const {data, success} = mock.data;
if (this.page > 1) {
console.log("page is:", this.page);
return this.listArr = this.listArr.concat(data);
}
this.listArr = data;
},
loadMore() {
this.loadList(this.page++);
},
},
};
</script>

View File

@ -11,24 +11,24 @@ import SecondComponent from '../pages/otherPages'
import ThirdComponent from '../pages/otherPages2'
export default new VueRouter({
mode: 'hash', // 还有 history 等
base: __dirname,
routes: [
{
path: '/index',
component: Index,
},
{
path: '/news',
component: News,
},
{
path: '/second',
component: SecondComponent,
},
{
path: '/third',
component: ThirdComponent,
}
]
mode: 'hash', // 还有 history 等
base: __dirname,
routes: [
{
path: '/index',
component: Index,
},
{
path: '/news',
component: News,
},
{
path: '/second',
component: SecondComponent,
},
{
path: '/third',
component: ThirdComponent,
}
]
})