mirror of
https://github.com/xxxsf/vue3-h5-template.git
synced 2025-04-06 05:23:46 +08:00
Feat 所有包升级到最新版
This commit is contained in:
parent
d22b31bea0
commit
a7de81908c
Binary file not shown.
Before Width: | Height: | Size: 68 KiB |
@ -1,10 +1,10 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<!-- 可以删掉 顶部 -->
|
<!-- 删除试试 顶部 -->
|
||||||
<HeaderCompontent></HeaderCompontent>
|
<HeaderCompontent></HeaderCompontent>
|
||||||
<!-- 渲染出口 -->
|
<!-- 渲染出口 -->
|
||||||
<router-view></router-view>
|
<router-view></router-view>
|
||||||
<!-- 可以删除 底部菜单 -->
|
<!-- 删除试试 底部菜单 -->
|
||||||
<FootComponent></FootComponent>
|
<FootComponent></FootComponent>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 6.7 KiB |
17
src/mock/index.js
Normal file
17
src/mock/index.js
Normal 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,
|
||||||
|
}]
|
||||||
|
};
|
@ -1,44 +1,37 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<button v-on:click="loadMore">click me</button>
|
<button v-on:click="loadMore">click me</button>
|
||||||
<div>
|
<ul>
|
||||||
<ul>
|
<li v-for="(item, index) in listArr" :key="index">
|
||||||
<li v-for="(item, index) in listArr" :key="index">
|
<a href="">{{ index }} 《{{ item.name }}》</a>
|
||||||
<a href="">{{ index }} 《{{ item.name }}》</a>
|
</li>
|
||||||
</li>
|
</ul>
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="loading" v-if="loading">
|
|
||||||
Loading...
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
|
let mock = require('../mock'); // 模拟请求
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data: () => ({
|
data: () => ({
|
||||||
loading: false,
|
listArr: [],
|
||||||
listArr: [],
|
page: 1,
|
||||||
}),
|
}),
|
||||||
created() {
|
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");
|
|
||||||
this.loadList();
|
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>
|
</script>
|
||||||
|
|
||||||
|
@ -11,24 +11,24 @@ import SecondComponent from '../pages/otherPages'
|
|||||||
import ThirdComponent from '../pages/otherPages2'
|
import ThirdComponent from '../pages/otherPages2'
|
||||||
|
|
||||||
export default new VueRouter({
|
export default new VueRouter({
|
||||||
mode: 'hash', // 还有 history 等
|
mode: 'hash', // 还有 history 等
|
||||||
base: __dirname,
|
base: __dirname,
|
||||||
routes: [
|
routes: [
|
||||||
{
|
{
|
||||||
path: '/index',
|
path: '/index',
|
||||||
component: Index,
|
component: Index,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/news',
|
path: '/news',
|
||||||
component: News,
|
component: News,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/second',
|
path: '/second',
|
||||||
component: SecondComponent,
|
component: SecondComponent,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/third',
|
path: '/third',
|
||||||
component: ThirdComponent,
|
component: ThirdComponent,
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user